Draw a sphere: Difference between revisions

Content added Content deleted
(brlcad)
m (db name fix)
Line 7: Line 7:
<lang brlcad>opendb balls.g y # Create a database to hold our shapes
<lang brlcad>opendb balls.g y # Create a database to hold our shapes
units cm # Set the unit of measure
units cm # Set the unit of measure
in balls.s sph 0 0 0 3 # Create a sphere of radius 3 cm with its centre at 0,0,0</lang>
in balls.g sph 0 0 0 3 # Create a sphere of radius 3 cm with its centre at 0,0,0</lang>