Home Events! Entrance Everyone Wiki Search Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
September 08, 2024 - @126.13 (what is this?)
Forum activity rating: Two Stars Posts: 17/1k.beats ~ Boop! The forum will close in 874.beats! Unread Topics | Unread Replies | Own Posts | Own Topics | Random Topic | Recent Posts
News: :transport: :transport: More is More :transport: :transport:

+  MelonLand Forum
|-+  World Wild Web
| |-+  ☆ ∙ Showcase & Links
| | |-+  VRML and Cosmo Player


« previous next »
Pages: [1] Print
Author Topic: VRML and Cosmo Player  (Read 879 times)
DiffydaDude
Sr. Member ⚓︎
****


I FOUND A PONEH

⛺︎ My Room
Matrix: Chat!
XMPP: Chat!

View Profile WWW

Bred :320% coolerFirst 1000 Members!Joined 2023!
« on: September 10, 2023 @117.63 »

Dunno how relevant VRML is here but imma still put this here

I was browsing the web one day, looking up stuff about VRML, when i came across this index directory here
http://ftp.carnet.hr/misc/VRML/
It really caught my eye, because its full of interesting and old, and possibly not-well-archived software from the 90s. In fact the whole http://ftp.carnet.hr/misc index is full of interesting information and software, the whole directory should really be archived.
Among all the software here was an install for Cosmo Player, which was the recommended software for VRML usage by SGI.
So theres the link to install this software, if you have an old Windows machine and want to install some VRML software, go ahead :)
Heres a cosmo player button I found too

I'd like to discuss more about VRML, it's relatively obscure, being one of those "big things" from magazines that never really became that big and people forgot about. Do yall think VRML should make a comeback in the modern web, or not?
Logged







Melooon
Hero Member ⚓︎
*****


So many stars!

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games

View Profile WWW

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!...
« Reply #1 on: September 10, 2023 @494.29 »

Im always glad to see people discussing VRML; there is SO MUCH old VRML to explore and Iv hardly even touched on it; we definitely need to do more VRML exploring!

Quote
Dunno how relevant VRML is here but imma still put this here
People forget this forum was originally created to discuss online 3D worlds  :grin: If you are interested; VRML is not gone; it evolved into X3DOM (which is like HTML, but 3D) - its still very obscure and there are very few simple tutorials out there, but I have one on my site.

I would definitely like to see people making more web revival VRML worlds  :ozwomp:
Logged


everything lost will be recovered, when you drift into the arms of the undiscovered
DiffydaDude
Sr. Member ⚓︎
****


I FOUND A PONEH

⛺︎ My Room
Matrix: Chat!
XMPP: Chat!

View Profile WWW

Bred :320% coolerFirst 1000 Members!Joined 2023!
« Reply #2 on: September 10, 2023 @581.92 »

I would definitely like to see people making more web revival VRML worlds  :ozwomp:
I actually found an archive of VRML worlds from years gone by. It's on the Internet Archive @ https://archive.org/details/VRMLCompilation
Happy browsing :3
I do wanna add some 3d elements to my website. Could I convert my Valve Hammer maps to x3d or vrml maps? I have converted vrml maps to source, so i wonder if you can do the same in reverse  :omg:
some more websites related to vrml

https://web.archive.org/web/19970524213718/http://www.radiance.com/
https://web.archive.org/web/19980113075629/http://vrml.sgi.com/intro.html
https://web.archive.org/web/19970428084005/http://sdsc.edu/vrml/
Logged







Melooon
Hero Member ⚓︎
*****


So many stars!

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games

View Profile WWW

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!...
« Reply #3 on: September 10, 2023 @751.44 »

Thank you! I will explore these!

Could I convert my Valve Hammer maps to x3d or vrml maps?
I bet you totally can! If you can import them into Blender, then you can choose X3D from the export list and export them; then you just use this code to put them on a webpage :grin:

(Replace MY-X3D-FILE.x3d with the x3d file you exported from Blender - This will make the 3D world take up the full window, I like to put these in iframes to fit them into pages!)
Code
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>3D World</title>
        <script type='text/javascript' src='http://www.x3dom.org/download/x3dom.js'> </script> 
        <link rel='stylesheet' type='text/css' href='http://www.x3dom.org/download/x3dom.css'></link> 
        <style>
            html,
            body,
            #plot,
            #plot x3d {
                width: 100%;
                height: 100%;
                position: absolute;
                border: 0px;
                margin: 0px;
            }
        </style>
    </head>
    <body>
        <div id="plot">
            <x3d PrimitiveQuality="Medium" disableDoubleClick="true">
                <scene><inline url="MY-X3D-FILE.x3d" nameSpaceName="plot" /></scene>
            </x3d>
        </div>
    </body>
</html>
Logged


everything lost will be recovered, when you drift into the arms of the undiscovered
Cobra!
Hero Member ⚓︎
*****


’S fhearr Albais bhriste na Albais sa chiste

⛺︎ My Room
StatusCafe: cobradile
iMood: Cobradile
Matrix: Chat!
XMPP: Chat!
Itch.io: My Games

View Profile WWW

Happy Birthday 2k24 !bred :3First 1000 Members!Pocket Icelogist!OG! Joined 2021!
« Reply #4 on: September 13, 2023 @56.97 »

I’ve started to get into this, and found a pretty good tool, though for some reason the flatpak doesn’t seem to work for me.

I’ve been looking into making a 3D hub for my website when I overhaul it, and was thinking of making an X3D version of it.
Logged




“Snooping as usual, I see?”
JackFrost
Full Member ⚓︎
***


⛺︎ My Room

View Profile WWW

First 1000 Members!BUG!?!Joined 2022!
« Reply #5 on: September 13, 2023 @859.42 »

I know a tiny bit of VRML for sapari. Does anyone else like that game? I'm working on making my own map!
Logged



Coffee addict, Gunpla builder, SMT fan.
Cobra!
Hero Member ⚓︎
*****


’S fhearr Albais bhriste na Albais sa chiste

⛺︎ My Room
StatusCafe: cobradile
iMood: Cobradile
Matrix: Chat!
XMPP: Chat!
Itch.io: My Games

View Profile WWW

Happy Birthday 2k24 !bred :3First 1000 Members!Pocket Icelogist!OG! Joined 2021!
« Reply #6 on: September 14, 2023 @87.53 »

I know a tiny bit of VRML for sapari.

I’ve never heard of Saparai! What is it?
Logged




“Snooping as usual, I see?”
Pages: [1] Print 
« previous next »
 

Vaguely similar topics! (3)

Iconic Video Game Songs [Player's Choice Award]

Started by NightdriftBoard © ∙ Music Room

Replies: 24
Views: 5723
Last post March 21, 2024 @26.45
by konamiesque
Cassette Tapes and Players

Started by DoctorDizzyBoard ⛽︎ ∙ Technology & Archiving

Replies: 20
Views: 2271
Last post May 28, 2024 @685.91
by bingus_baby
MP3 players!

Started by JackFrostBoard ⛽︎ ∙ Technology & Archiving

Replies: 29
Views: 2491
Last post September 17, 2023 @497.97
by arsenicCatnip

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | Terms and Policies Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery! Pixel Sea TamaNOTchi