1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_MeshEditPreview.cxx
25 // Author : Open CASCADE S.A.S.
28 #include "SMESHGUI_MeshEditPreview.h"
30 #include "SMESHGUI_VTKUtils.h"
32 #include <SMESH_Actor.h>
33 #include <SMESH_ActorUtils.h>
35 // SALOME GUI includes
36 #include <VTKViewer_CellLocationsArray.h>
37 #include <SVTK_ViewWindow.h>
40 #include <vtkPoints.h>
41 #include <vtkIdList.h>
42 #include <vtkCellArray.h>
43 #include <vtkUnsignedCharArray.h>
44 #include <vtkUnstructuredGrid.h>
45 #include <vtkUnstructuredGridWriter.h>
46 #include <vtkDataSetMapper.h>
47 #include <vtkProperty.h>
53 #include <SALOMEconfig.h>
54 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
56 //================================================================================
60 //================================================================================
62 SMESHGUI_MeshEditPreview::SMESHGUI_MeshEditPreview(SVTK_ViewWindow* theViewWindow):
63 myViewWindow(theViewWindow)
65 myGrid = vtkUnstructuredGrid::New();
67 // Create and display actor
68 vtkDataSetMapper* aMapper = vtkDataSetMapper::New();
69 aMapper->SetInput( myGrid );
71 myPreviewActor = SALOME_Actor::New();
72 myPreviewActor->SetInfinitive(true);
73 myPreviewActor->VisibilityOn();
74 myPreviewActor->PickableOff();
76 vtkFloatingPointType anRGB[3];
77 SMESH::GetColor( "SMESH", "selection_element_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
78 SetColor( anRGB[0], anRGB[1], anRGB[2] );
80 myPreviewActor->SetMapper( aMapper );
83 myViewWindow->AddActor(myPreviewActor);
87 //================================================================================
91 //================================================================================
93 SMESHGUI_MeshEditPreview::~SMESHGUI_MeshEditPreview()
97 myViewWindow->RemoveActor(myPreviewActor);
98 myPreviewActor->Delete();
102 //================================================================================
104 * \brief Returns vtk cell type
106 //================================================================================
108 vtkIdType getCellType( const SMDSAbs_ElementType theType,
110 const int theNbNodes )
114 case SMDSAbs_Node: return VTK_VERTEX;
116 if( theNbNodes == 2 ) return VTK_LINE;
117 else if ( theNbNodes == 3 ) return VTK_QUADRATIC_EDGE;
118 else return VTK_EMPTY_CELL;
121 if (thePoly && theNbNodes>2 ) return VTK_POLYGON;
122 else if ( theNbNodes == 3 ) return VTK_TRIANGLE;
123 else if ( theNbNodes == 4 ) return VTK_QUAD;
124 else if ( theNbNodes == 6 ) return VTK_QUADRATIC_TRIANGLE;
125 else if ( theNbNodes == 8 ) return VTK_QUADRATIC_QUAD;
126 else return VTK_EMPTY_CELL;
129 if (thePoly && theNbNodes>3 ) return VTK_CONVEX_POINT_SET;
130 else if ( theNbNodes == 4 ) return VTK_TETRA;
131 else if ( theNbNodes == 5 ) return VTK_PYRAMID;
132 else if ( theNbNodes == 6 ) return VTK_WEDGE;
133 else if ( theNbNodes == 8 ) return VTK_HEXAHEDRON;
134 else if ( theNbNodes == 10 ) {
135 return VTK_QUADRATIC_TETRA;
137 else if ( theNbNodes == 20 ) {
138 return VTK_QUADRATIC_HEXAHEDRON;
140 else if ( theNbNodes==15 ) {
141 return VTK_QUADRATIC_WEDGE;
143 else if ( theNbNodes==13 ) {
144 return VTK_CONVEX_POINT_SET;
146 else return VTK_EMPTY_CELL;
148 default: return VTK_EMPTY_CELL;
152 //================================================================================
154 * \brief Set preview data
156 //================================================================================
158 void SMESHGUI_MeshEditPreview::SetData (const SMESH::MeshPreviewStruct* previewData)
161 const SMESH::nodes_array& aNodesXYZ = previewData->nodesXYZ;
162 vtkPoints* aPoints = vtkPoints::New();
163 aPoints->SetNumberOfPoints(aNodesXYZ.length());
165 for ( int i = 0; i < aNodesXYZ.length(); i++ ) {
166 aPoints->SetPoint( i, aNodesXYZ[i].x, aNodesXYZ[i].y, aNodesXYZ[i].z );
168 myGrid->SetPoints(aPoints);
173 const SMESH::long_array& anElemConnectivity = previewData->elementConnectivities;
174 const SMESH::types_array& anElemTypes = previewData->elementTypes;
176 vtkIdType aCellsSize = anElemConnectivity.length() + anElemTypes.length();
177 vtkIdType aNbCells = anElemTypes.length();
179 vtkCellArray* aConnectivity = vtkCellArray::New();
180 aConnectivity->Allocate( aCellsSize, 0 );
182 vtkUnsignedCharArray* aCellTypesArray = vtkUnsignedCharArray::New();
183 aCellTypesArray->SetNumberOfComponents( 1 );
184 aCellTypesArray->Allocate( aNbCells * aCellTypesArray->GetNumberOfComponents() );
186 vtkIdList *anIdList = vtkIdList::New();
189 for ( int i = 0; i < anElemTypes.length(); i++ ) {
190 const SMESH::ElementSubType& anElementSubType = anElemTypes[i];
191 SMDSAbs_ElementType aType = SMDSAbs_ElementType(anElementSubType.SMDS_ElementType);
192 vtkIdType aNbNodes = anElementSubType.nbNodesInElement;
193 anIdList->SetNumberOfIds( aNbNodes );
195 for ( vtkIdType aNodeId = 0; aNodeId < aNbNodes; aNodeId++ ){
196 anIdList->SetId( aNodeId, anElemConnectivity[aNodePos] );
200 aConnectivity->InsertNextCell( anIdList );
201 aCellTypesArray->InsertNextValue( getCellType( aType,
202 anElemTypes[i].isPoly,
207 // Insert cells in grid
208 VTKViewer_CellLocationsArray* aCellLocationsArray = VTKViewer_CellLocationsArray::New();
209 aCellLocationsArray->SetNumberOfComponents( 1 );
210 aCellLocationsArray->SetNumberOfTuples( aNbCells );
212 aConnectivity->InitTraversal();
213 for( vtkIdType idType = 0, *pts, npts; aConnectivity->GetNextCell( npts, pts ); idType++ )
214 aCellLocationsArray->SetValue( idType, aConnectivity->GetTraversalLocation( npts ) );
216 myGrid->SetCells( aCellTypesArray, aCellLocationsArray, aConnectivity );
218 myPreviewActor->GetMapper()->Update();
220 aCellTypesArray->Delete();
221 aCellLocationsArray->Delete();
222 aConnectivity->Delete();
227 //================================================================================
229 * \brief Set visibility
231 //================================================================================
233 void SMESHGUI_MeshEditPreview::SetVisibility (bool theVisibility)
235 myPreviewActor->SetVisibility(theVisibility);
236 SMESH::RepaintCurrentView();
239 //================================================================================
241 * \brief Set preview color
243 //================================================================================
245 void SMESHGUI_MeshEditPreview::SetColor(double R, double G, double B)
247 myPreviewActor->SetColor( R, G, B );
250 //================================================================================
252 * \brief Get preview actor
254 //================================================================================
255 SALOME_Actor* SMESHGUI_MeshEditPreview::GetActor() const
257 return myPreviewActor;