home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Windows 95.com 1996 September
/
WIN95_09962.iso
/
vrml
/
MWE105.ZIP
/
EExamples
/
Connect.vxr
< prev
next >
Wrap
Text File
|
1996-01-24
|
630b
|
36 lines
#VRML V1.0 ascii
Separator {
# Options: ON OFF AUTO
renderCulling AUTO
OUTPUT_TO Connect.wrl
Material {
diffuseColor =Color("yellow")
}
DEF one Ball {
fields [ SFVec3f center, SFFloat radius ]
center 0 0 0
radius .1
}
DEF two Ball {
fields [ SFVec3f center, SFFloat radius ]
center 1 1 0
radius .1
}
Material {
diffuseColor =Color("white")
}
Connect {
fields [ SFNode first, SFNode second, SFFloat radius ]
first one # Name of a node with a SFVect3f center field
second two # Name of another node with a SFVect3f center field
radius 1'cm
}
}