From fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd Mon Sep 17 00:00:00 2001 From: dan miller Date: Fri, 19 Oct 2007 05:20:07 +0000 Subject: dont ask --- libraries/ode-0.9/contrib/DotNetManaged/Geom.h | 75 -------------------------- 1 file changed, 75 deletions(-) delete mode 100644 libraries/ode-0.9/contrib/DotNetManaged/Geom.h (limited to 'libraries/ode-0.9/contrib/DotNetManaged/Geom.h') diff --git a/libraries/ode-0.9/contrib/DotNetManaged/Geom.h b/libraries/ode-0.9/contrib/DotNetManaged/Geom.h deleted file mode 100644 index 83a6faf..0000000 --- a/libraries/ode-0.9/contrib/DotNetManaged/Geom.h +++ /dev/null @@ -1,75 +0,0 @@ -#pragma once - -#include "Body.h" -#include "Space.h" -#include "CommonMgd.h" - -namespace ODEManaged -{ - __gc public class Geom - { - public: - - - //Constructor - - Geom (void); - - - //Destructor - - ~Geom (void); - - - //Methods - - //Basic Stuff - - dGeomID Id (void); - dBodyID GetBody (void); - - //Overloaded SetBody - void SetBody (Body &body); - /*void SetBody (dBodyID b);*/ - - Vector3 GetPosition (void); - void SetPosition (double x, double y, double z); - - Matrix3 GetRotation (void); - void SetRotation (Matrix3 rotation); - - void SetData (void *data); - void *GetData (void); - - - //Create Objects - - void CreateSphere (Space &space, double radius); - void CreateBox (Space &space, double lx, double ly, double lz); - void CreatePlane (Space &space, double a, double b, double c, double d); - void CreateCCylinder (Space &space, double radius, double length); - - - //Destroy Objects - - void Destroy (void); - - - //Get Object's Parameters - - double SphereGetRadius (void); - Vector3 BoxGetLengths (void); - Vector4 PlaneGetParams (void); - void CCylinderGetParams (double *radius, double *length); - int GetClass (void); - - - //Properties - - private: - - dGeomID _id; - - }; - -} -- cgit v1.1