/// <summary> /// Set the numerical option `option' to value `value' for field `tag'. /// </summary> public void SetNumber(int tag, string option, double value) { GMshNativeMethods.gmshModelMeshFieldSetNumber(tag, option, value, ref ierr); if (ierr != 0) { throw new GMshException(ierr); } }