コード例 #1
0
ファイル: NxForceField.cs プロジェクト: d3x0r/xperdex
 /// <summary>Sets the Coordinate space of the field. Transforms position and velocity of objects into this space prior to kernel evaluation. </summary>
 /// <param name="coordinates">The coordinate system. See NxForceFieldCoordinates</param>
 public virtual void setCoordinates(NxForceFieldCoordinates coordinates)
 {
     if (doSetFunctionPointers)
     {
         throw new System.NotSupportedException("Cannot call abstract base member");
     }
     NxForceField_setCoordinates_INVOKE(ClassPointer, doSetFunctionPointers, coordinates);
 }
コード例 #2
0
 private extern static void set_NxForceFieldDesc_coordinates_INVOKE(HandleRef classPointer, NxForceFieldCoordinates newvalue);
コード例 #3
0
ファイル: NxForceField.cs プロジェクト: d3x0r/xperdex
 private extern static void NxForceField_setCoordinates_INVOKE(HandleRef classPointer, System.Boolean call_explicit, NxForceFieldCoordinates coordinates);
コード例 #4
0
ファイル: NxForceField.cs プロジェクト: d3x0r/xperdex
 private void setCoordinates_virtual(NxForceFieldCoordinates coordinates)
 {
     setCoordinates(coordinates);
 }