mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 23:30:32 +05:00
improve comments
This commit is contained in:
parent
cb99a4c0e6
commit
868ce5dcae
@ -373,8 +373,8 @@ protected:
|
|||||||
bool _requireShape; // work with GetDim()-1 mesh bound to geom only. Default TRUE
|
bool _requireShape; // work with GetDim()-1 mesh bound to geom only. Default TRUE
|
||||||
bool _supportSubmeshes; // if !_requireDiscreteBoundary. Default FALSE
|
bool _supportSubmeshes; // if !_requireDiscreteBoundary. Default FALSE
|
||||||
|
|
||||||
// quadratic mesh creation required,
|
// indicates if quadratic mesh creation is required,
|
||||||
// is usually set trough SMESH_MesherHelper::IsQuadraticSubMesh()
|
// is usually set like this: _quadraticMesh = SMESH_MesherHelper::IsQuadraticSubMesh(shape)
|
||||||
bool _quadraticMesh;
|
bool _quadraticMesh;
|
||||||
|
|
||||||
int _error; //!< SMESH_ComputeErrorName or anything algo specific
|
int _error; //!< SMESH_ComputeErrorName or anything algo specific
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
// File : SMESHDS_Hypothesis.hxx
|
// File : SMESHDS_Hypothesis.hxx
|
||||||
// Author : Paul RASCLE, EDF
|
// Author : Paul RASCLE, EDF
|
||||||
// Module : SMESH
|
// Module : SMESH
|
||||||
// $Header$
|
|
||||||
//
|
//
|
||||||
#ifndef _SMESHDS_HYPOTHESIS_HXX_
|
#ifndef _SMESHDS_HYPOTHESIS_HXX_
|
||||||
#define _SMESHDS_HYPOTHESIS_HXX_
|
#define _SMESHDS_HYPOTHESIS_HXX_
|
||||||
@ -53,9 +52,9 @@ public:
|
|||||||
enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D };
|
enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D };
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::string _name;
|
std::string _name; // identifier if hypothesis type
|
||||||
int _hypId;
|
int _hypId; // ID unique within application session
|
||||||
int _type;
|
int _type; // enum hypothesis_type
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user