Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HeightfieldData"/> class.
 /// </summary>
 public HeightfieldData()
 {
     id = NativeMethods.dGeomHeightfieldDataCreate();
 }
Exemplo n.º 2
0
 public static extern void dGeomHeightfieldSetHeightfieldData(dGeomID g, dHeightfieldDataID d);
Exemplo n.º 3
0
 public static extern void dGeomHeightfieldDataSetBounds(dHeightfieldDataID d, dReal minHeight, dReal maxHeight);
Exemplo n.º 4
0
 public static extern void dGeomHeightfieldDataDestroy(dHeightfieldDataID d);
Exemplo n.º 5
0
 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);
Exemplo n.º 6
0
 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);