mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
[SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
+ bool IsSupportSubmeshes; //!< TRUE if the algo building all-dim elems supports submeshes
This commit is contained in:
parent
0375a82ed4
commit
4beda885d0
@ -537,7 +537,8 @@ HypothesisData::HypothesisData( const QString& theTypeName,
|
|||||||
const QStringList& theOptionalHypos,
|
const QStringList& theOptionalHypos,
|
||||||
const QStringList& theInputTypes,
|
const QStringList& theInputTypes,
|
||||||
const QStringList& theOutputTypes,
|
const QStringList& theOutputTypes,
|
||||||
const bool theIsNeedGeometry )
|
const bool theIsNeedGeometry,
|
||||||
|
const bool supportSub)
|
||||||
: TypeName( theTypeName ),
|
: TypeName( theTypeName ),
|
||||||
PluginName( thePluginName ),
|
PluginName( thePluginName ),
|
||||||
ServerLibName( theServerLibName ),
|
ServerLibName( theServerLibName ),
|
||||||
@ -550,7 +551,8 @@ HypothesisData::HypothesisData( const QString& theTypeName,
|
|||||||
OptionalHypos( theOptionalHypos ),
|
OptionalHypos( theOptionalHypos ),
|
||||||
InputTypes( theInputTypes ),
|
InputTypes( theInputTypes ),
|
||||||
OutputTypes( theOutputTypes ),
|
OutputTypes( theOutputTypes ),
|
||||||
IsNeedGeometry( theIsNeedGeometry )
|
IsNeedGeometry( theIsNeedGeometry ),
|
||||||
|
IsSupportSubmeshes( supportSub )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ public:
|
|||||||
const QList<int>&, const bool,
|
const QList<int>&, const bool,
|
||||||
const QStringList&, const QStringList&,
|
const QStringList&, const QStringList&,
|
||||||
const QStringList&, const QStringList&,
|
const QStringList&, const QStringList&,
|
||||||
const bool = true );
|
const bool=true, const bool supportSub=false );
|
||||||
|
|
||||||
QString TypeName; //!< hypothesis type name
|
QString TypeName; //!< hypothesis type name
|
||||||
QString PluginName; //!< plugin name
|
QString PluginName; //!< plugin name
|
||||||
@ -160,7 +160,8 @@ public:
|
|||||||
QString IconId; //!< icon identifier
|
QString IconId; //!< icon identifier
|
||||||
QList<int> Dim; //!< list of supported dimensions (see SMESH::Dimension enumeration)
|
QList<int> Dim; //!< list of supported dimensions (see SMESH::Dimension enumeration)
|
||||||
bool IsAux; //!< TRUE if given hypothesis is auxiliary one, FALSE otherwise
|
bool IsAux; //!< TRUE if given hypothesis is auxiliary one, FALSE otherwise
|
||||||
bool IsNeedGeometry; //!< TRUE if for given hypothesis need shape, FALSE otherwise
|
bool IsNeedGeometry; //!< TRUE if the algorithm works with shapes only, FALSE otherwise
|
||||||
|
bool IsSupportSubmeshes; //!< TRUE if the algo building all-dim elems supports submeshes
|
||||||
|
|
||||||
// for algorithm only: dependencies algo <-> algo and algo -> hypos
|
// for algorithm only: dependencies algo <-> algo and algo -> hypos
|
||||||
QStringList NeededHypos; //!< list of obligatory hypotheses
|
QStringList NeededHypos; //!< list of obligatory hypotheses
|
||||||
|
Loading…
Reference in New Issue
Block a user