# Create a first 3d object with VPython # import the necessary methods from visual import * # create a cylinder # change its diameter and length cylinder(pos=(-5,0,0),axis=(4,0,0), radius = 0.5) # make the sphere really small and change its color sphere(radius=0.2, color=color.red) box(pos=(1,0,0), size=(0.1,5,5))