]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
0021856: [CEA 663] Documenting API of MEDCoupling and MEDLoader
authoreap <eap@opencascade.com>
Fri, 5 Apr 2013 07:57:08 +0000 (07:57 +0000)
committereap <eap@opencascade.com>
Fri, 5 Apr 2013 07:57:08 +0000 (07:57 +0000)
- *  \throw If \a i is not one of [1,2,3].
+ *  \throw If \a i is not one of [0,1,2].

src/MEDCoupling/MEDCouplingCMesh.cxx

index 17042caed7ee8f2d98658298dcf366dfd4dd185e..0895a17cfc2fe192cddc42e09aed098de36568a5 100644 (file)
@@ -391,10 +391,10 @@ std::string MEDCouplingCMesh::advancedRepr() const
 /*!
  * Returns a DataArrayDouble holding positions of nodes along a given axis.
  * For more info on Cartesian meshes, see \ref MEDCouplingCMeshPage.
- *  \param [in] i - an index of axis, a value from [1,2,3].
+ *  \param [in] i - an index of axis, a value from [0,1,2].
  *  \return const DataArrayDouble * - a pointer to the data array of node coordinates
  *         referred by \a this mesh.
- *  \throw If \a i is not one of [1,2,3].
+ *  \throw If \a i is not one of [0,1,2].
  *
  *  \ref cpp_mccmesh_getCoordsAt "Here is a C++ example".<br>
  *  \ref  py_mccmesh_getCoordsAt "Here is a Python example".
@@ -417,10 +417,10 @@ const DataArrayDouble *MEDCouplingCMesh::getCoordsAt(int i) const throw(INTERP_K
 /*!
  * Returns a DataArrayDouble holding positions of nodes along a given axis.
  * For more info on Cartesian meshes, see \ref MEDCouplingCMeshPage.
- *  \param [in] i - an index of axis, a value from [1,2,3].
+ *  \param [in] i - an index of axis, a value from [0,1,2].
  *  \return const DataArrayDouble * - a pointer to the data array of node coordinates
  *         referred by \a this mesh.
- *  \throw If \a i is not one of [1,2,3].
+ *  \throw If \a i is not one of [0,1,2].
  *
  *  \ref cpp_mccmesh_getCoordsAt "Here is a C++ example".<br>
  *  \ref  py_mccmesh_getCoordsAt "Here is a Python example".
@@ -443,11 +443,11 @@ DataArrayDouble *MEDCouplingCMesh::getCoordsAt(int i) throw(INTERP_KERNEL::Excep
 /*!
  * Sets node coordinates along a given axis. For more info on Cartesian meshes, see 
  * \ref MEDCouplingCMeshPage.
- *  \param [in] i - an index of axis, a value in range [1,2,3].
+ *  \param [in] i - an index of axis, a value in range [0,1,2].
  *  \param [in] arr - DataArrayDouble holding positions of nodes along the i-th
  *         axis. It must be an array of one component.
  *  \throw If \a arr->getNumberOfComponents() != 1.
- *  \throw If \a i is not one of [1,2,3].
+ *  \throw If \a i is not one of [0,1,2].
  *
  *  \ref medcouplingcppexamplesCmeshStdBuild1 "Here is a C++ example".<br>
  *  \ref  medcouplingpyexamplesCmeshStdBuild1 "Here is a Python example".