| home | project pages | download | documentation | doxygen | contact |
Functions | |
| def | Plane |
| An infinite xy-plane at the origin, solid is down. | |
| def | Cylinder |
| An infinite cylinder at the origin. | |
| def | Sphere |
| A sphere at the origin. | |
| def | Union |
| A union of objects. | |
| def | Intersection |
| A intersection of objects. | |
| def | Difference |
| Substract secondary objects from the primary object. | |
| def | Invert |
| Turns objects inside-out. | |
| def | CappedCylinder |
| A finite solid cylinder. | |
| def | Box |
| A finite solid box. | |
Variables | |
| list | _shapes_remember = [] |
| def pyext::shapes::Box | ( | w = 1.0, |
||
d = 1.0, |
||||
h = 1.0 | ||||
| ) |
A finite solid box.
| w | width, length of the x-axis | |
| d | depth, length of the y-axis | |
| h | height, length of the z-axis |
| def pyext::shapes::CappedCylinder | ( | r = 0.5, |
||
h = 1.0 | ||||
| ) |
A finite solid cylinder.
| r | radius of the cylinder | |
| h | hight of the cylinder |
| def pyext::shapes::Cylinder | ( | r = 0.5 |
) |
An infinite cylinder at the origin.
| r | radius |
| def pyext::shapes::Difference | ( | shapes | ) |
| def pyext::shapes::Intersection | ( | shapes | ) |
| def pyext::shapes::Plane | ( | ) |
An infinite xy-plane at the origin, solid is down.
| def pyext::shapes::Sphere | ( | r = 0.5 |
) |
A sphere at the origin.
| r | radius |
| list pyext::shapes::_shapes_remember = [] |