Home David Personal How Is David...?
Updated: 2008-07-17

Thursday 17th July 2008

Software

A figure created with the ldraw package
shown in LDView.
from ldraw.colours import *
from ldraw.figure import *

figure = Person()
print figure.head(Yellow, 35)
print figure.hat(Black, "3901")  # Hair Male
print figure.torso(Red, "973") # Torso
print figure.hips(Blue)
print figure.left_leg(Blue, 5)
print figure.right_leg(Blue, 20)
print figure.left_arm(Red, 0)
print figure.left_hand(Yellow, 0)
print figure.right_arm(Red, -90)
print figure.right_hand(Yellow, 0)
print
Created with the ldraw Python package.