[Rob] > >>> from cgkit import * > >>> Sphere() > Traceback (most recent call last): > File "<interactive input>", line 1, in ? > NameError: name 'Sphere' is not defined
Do you have a file of your own called cgkit.py? You're probably importing that rather than the real thing. Try this: >>> import cgkit >>> print cgkit.__file__ >>> dir(cgkit) -- Richie Hindle [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list