示例#1
0
 /// <summary>For internal use only. </summary>
 public virtual void update(NxForceFieldKernel @in)
 {
     if (doSetFunctionPointers)
     {
         throw new System.NotSupportedException("Cannot call abstract base member");
     }
     NxForceFieldKernel_update_INVOKE(ClassPointer, doSetFunctionPointers, (@in != null ? @in.ClassPointer : NullRef));
 }
示例#2
0
 /// <summary>For internal use only. </summary>
 public virtual NxForceFieldKernel clone()
 {
     if (doSetFunctionPointers)
     {
         throw new System.NotSupportedException("Cannot call abstract base member");
     }
     return(NxForceFieldKernel.GetClass(NxForceFieldKernel_clone_INVOKE(ClassPointer, doSetFunctionPointers)));
 }
示例#3
0
 /// <summary>Sets the kernel function which this field will be using. </summary>
 public virtual void setForceFieldKernel(NxForceFieldKernel kernel)
 {
     if (doSetFunctionPointers)
     {
         throw new System.NotSupportedException("Cannot call abstract base member");
     }
     NxForceField_setForceFieldKernel_INVOKE(ClassPointer, doSetFunctionPointers, (kernel != null ? kernel.ClassPointer : NullRef));
 }
示例#4
0
 private void update_virtual(IntPtr @in)
 {
     update(NxForceFieldKernel.GetClass(@in));
 }
示例#5
0
 private void setForceFieldKernel_virtual(IntPtr kernel)
 {
     setForceFieldKernel(NxForceFieldKernel.GetClass(kernel));
 }