⇤ ← Revision 1 as of 2012-04-13 22:19:29
Size: 174
Comment:
|
Size: 327
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
To create a new Item3D widget use must inherit from EMItem3D (you will need to import this class from emitem3d). | To create a new Item3D widget use must inherit from EMItem3D (you will need to import this class from emitem3d). EMItem3D is a new style class so you don't need to multiply inherit from object. For exmaple: {{{#!highlight python class EMNewItem(EMItem3D): }}} |
Creating a new Item3D widget for use in EMScene3D
To create a new Item3D widget use must inherit from EMItem3D (you will need to import this class from emitem3d). EMItem3D is a new style class so you don't need to multiply inherit from object.
For exmaple:
1 class EMNewItem(EMItem3D):