| 1234567891011121314151617181920212223242526272829 |
-
- /* ************************************************************************ */
- /*
- grouped and transformed geometry functions
- author: Tim Schmidt [email protected]
- */
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern int dGeomTransformGroupClass;
- void dGeomTransformGroupSetRelativePosition (dGeomID g, dReal x, dReal y, dReal z);
- void dGeomTransformGroupSetRelativeRotation (dGeomID g, const dMatrix3 R);
- const dReal * dGeomTransformGroupGetRelativePosition (dxGeom *g);
- const dReal * dGeomTransformGroupGetRelativeRotation (dxGeom *g);
- dGeomID dCreateGeomTransformGroup (dSpaceID space);
- void dGeomTransformGroupAddGeom (dGeomID tg, dGeomID obj);
- void dGeomTransformGroupRemoveGeom (dGeomID tg, dGeomID obj);
- dGeomID dGeomTransformGroupGetGeom (dGeomID tg, int i);
- int dGeomTransformGroupGetNumGeoms (dGeomID tg);
- #ifdef __cplusplus
- }
- #endif
|