Metropoli BBS
VIEWER: connect.vxr MODE: TEXT (ASCII)
#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
	}
}
[ RETURN TO DIRECTORY ]