示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HeightfieldData"/> class.
 /// </summary>
 public HeightfieldData()
 {
     id = NativeMethods.dGeomHeightfieldDataCreate();
 }
示例#2
0
文件: Ode.cs 项目: WolfgangSt/axiom
 public static extern void dGeomHeightfieldSetHeightfieldData(dGeomID g, dHeightfieldDataID d);
示例#3
0
文件: Ode.cs 项目: WolfgangSt/axiom
 public static extern void dGeomHeightfieldDataSetBounds(dHeightfieldDataID d, dReal minHeight, dReal maxHeight);
示例#4
0
文件: Ode.cs 项目: WolfgangSt/axiom
 public static extern void dGeomHeightfieldDataDestroy(dHeightfieldDataID d);
示例#5
0
文件: Ode.cs 项目: WolfgangSt/axiom
 public static extern void dGeomHeightfieldDataBuildDouble(dHeightfieldDataID d, IntPtr pHeightData, int bCopyHeightData,
         dReal width, dReal depth, int widthSamples, int depthSamples,
         dReal scale, dReal offset, dReal thickness, int bWrap);
示例#6
0
文件: Ode.cs 项目: WolfgangSt/axiom
 public static extern void dGeomHeightfieldDataBuildCallback(dHeightfieldDataID d, IntPtr pUserData, dHeightfieldGetHeight pCallback,
         dReal width, dReal depth, int widthSamples, int depthSamples,
         dReal scale, dReal offset, dReal thickness, int bWrap);