Ejemplo n.º 1
0
 /// <summary>
 /// Set the numerical list option `option' to value `value' for field `tag'.
 /// </summary>
 public void SetNumbers(int tag, string option, double[] value)
 {
     GMshNativeMethods.gmshModelMeshFieldSetNumbers(tag, option, value, value.Length.ToUlong(), ref ierr);
     if (ierr != 0)
     {
         throw new GMshException(ierr);
     }
 }