Functions | |
| void | MEDMEM::MESHING.setCoordinatesNames (const string *names) |
| void | MEDMEM::MESHING.setCoordinateName (const string name, const int i) |
| void | MEDMEM::MESHING.setCoordinatesUnits (const string *units) |
| void | MEDMEM::MESHING.setCoordinateUnit (const string unit, const int i) |
| void MEDMEM.MESHING::setCoordinatesNames | ( | const string * | name | ) | [inherited] |
Sets the coordinate names array. Coordinates names must not exceed the storage length defined in MED-file : MED_TAILLE_PNOM (8).
Example:
string coord[3]={"x","y","z"};
meshing.setCoordinatesNames(coord);
References MEDMEM.MESH._coordinate, and MEDMEM.COORDINATE.setCoordinatesNames().
| void MEDMEM.MESHING::setCoordinateName | ( | const string | name, |
| const int | i | ||
| ) | [inherited] |
Sets the (i+1)-th component of coordinate names array. Coordinates names must not exceed the storage length defined in MED-file : MED_TAILLE_PNOM (8).
References MEDMEM.MESH._coordinate, and MEDMEM.COORDINATE.setCoordinateName().
| void MEDMEM.MESHING::setCoordinatesUnits | ( | const string * | units | ) | [inherited] |
Sets the coordinate unit names array of size n*MED_TAILLE_PNOM. Coordinates units must not exceed the storage length defined in MED-file : MED_TAILLE_PNOM (8).
Example:
string coord[3]={"cm","cm","cm"};
meshing.setCoordinatesUnits(coord);
References MEDMEM.MESH._coordinate, and MEDMEM.COORDINATE.setCoordinatesUnits().
| void MEDMEM.MESHING::setCoordinateUnit | ( | const string | unit, |
| const int | i | ||
| ) | [inherited] |
Sets the
component of the coordinate unit names array ("cm ","cm ","cm ") of size n*MED_TAILLE_PNOM
References MEDMEM.MESH._coordinate, and MEDMEM.COORDINATE.setCoordinateUnit().