Salome HOME
fix conflict: ctest requires SUBDIRS, not ADD_SUBDIRECTORY directives
[tools/medcoupling.git] / doc / doxygen / doxfiles / medcoupling / MEDCouplingCMesh.dox
1
2 /*!
3   \page MEDCouplingCMeshPage Cartesian meshes in MEDCoupling
4
5 A cartesian mesh is a mesh that represents structured mesh whose nodes are arranged along axes of trihedron.
6
7 To instantiate an object of this type, only n arrays are needed.
8
9 In this type of mesh space dimension \b and mesh dimension are equals and the value is n ( with n in [1,2,3] ).
10
11 The n arrays will have only one component and the values contained in these arrays will be ascendently sorted.
12
13 The class that incarnates the described concept is : ParaMEDMEM::MEDCouplingCMesh.
14
15 \section MEDCouplingCMeshStdBuild Standard building of a cartesian mesh from scratch
16
17 Let's present an example of a 2D cartesian mesh.
18
19 \subpage medcouplingcppexamplesCmeshStdBuild1 "Here the C++ implementation."
20
21 \subpage medcouplingpyexamplesCmeshStdBuild1 "Here the Python implementation."
22
23 */