207 static void initClass() ;
208 static void exitClass() ;
211 virtual void doExtract(
SoAction *action);
218 template<
typename _Tuple> std::vector<_Tuple>& buildIndexList();
220 std::vector<size_t>& buildIndexListI();
221 std::vector<size_t> m_indexListI;
222 std::vector<MiCellExtractIj::couple>& buildIndexListIj();
223 std::vector<MiCellExtractIj::couple> m_indexListIj;
224 std::vector<MiCellExtractIjk::triplet>& buildIndexListIjk();
225 std::vector<MiCellExtractIjk::triplet> m_indexListIjk;
227 template< MeshType _meshType>
235 size_t m_timeStampOfLastCellNames;
236 size_t m_timeStampOfLastNodeNames;
242 DisplayName(std::string name,
const MbVec3d& pos) : m_name(name), m_pos(pos) {}
245 bool operator==(
const DisplayName& c1)
const {
return m_name == c1.m_name && m_pos ==c1.m_pos;}
247 std::vector<DisplayName> m_cellNames;
248 std::vector<DisplayName> m_nodeNames;
250 template <
typename _Iterator,
typename _Topology,
typename _Tuple>
251 void getDisplayCellList(
const _Topology& topology, std::vector<_Tuple>& indexList, std::vector<_Tuple>& cellIds);
253 void buildDisplayNamesListI(SoState* state,
const MiMeshUnstructuredI& mesh,
const MiCellFilterI* cellFilter);
254 void buildDisplayNamesListIj(SoState* state,
const MiTopologyIj& topology,
const MiGeometryI& geometry,
const MiCellFilterIj* cellFilter);
255 void buildDisplayNamesListIjk(SoState* state,
const MiVolumeMeshHexahedronIjk& mesh,
const MiCellFilterIjk* cellFilter,
bool displayNodes =
true);
257 void displayNames(std::vector<DisplayName>& newDisplayNames, std::vector<DisplayName>& currentDisplayNames, SoSeparator*& nameSep);
259 SoSeparator* m_nodeNamesSep;
260 SoSeparator* m_cellNamesSep;
262 class CellFilter :
public MiCellFilterI,
public MiCellFilterIj,
public MiCellFilterIjk
266 bool acceptCell(
size_t cellIndex)
const;
267 bool acceptCell(
size_t i,
size_t j)
const;
268 bool acceptCell(
size_t i,
size_t j,
size_t k)
const;
269 size_t getTimeStamp()
const;
270 void set(std::vector<size_t>& exclusionListI,
const MiCellFilterI* userCellFilter);
271 void set(std::vector<MiCellExtractIj::couple>& exclusionListIj,
const MiCellFilterIj* userCellFilter);
272 void set(std::vector<MiCellExtractIjk::triplet>& exclusionListIjk,
const MiCellFilterIjk* userCellFilter);
274 template <
typename _vectorT >
void copy( _vectorT& exclusionListI, _vectorT& newListI);
275 std::vector<size_t> m_exclusionListI;
276 std::vector<MiCellExtractIj::couple> m_exclusionListIj;
277 std::vector<MiCellExtractIjk::triplet> m_exclusionListIjk;
278 const MiCellFilterI* m_userCellFilterI;
279 const MiCellFilterIj* m_userCellFilterIj;
280 const MiCellFilterIjk* m_userCellFilterIjk;
281 const MiCellFilter* m_currentCellFilter;
282 mutable size_t m_userTS;
283 mutable size_t m_timeStamp;
285 CellFilter m_excludedCellFilter;
287 static MxDefaultStreamStringSet* s_streamStringSet;