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