1 // Copyright (C) 2007-2019 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, or (at your option) any later version.
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 OBJECT : interactive object for SMESH visualization
24 // File : SMESH_Actor.cxx
25 // Author : Nicolas REJNERI
28 #include "SMESH_ActorDef.h"
30 #include "SMDS_UnstructuredGrid.hxx"
31 #include "SMESH_ActorProps.h"
32 #include "SMESH_ActorUtils.h"
33 #include "SMESH_CellLabelActor.h"
34 #include "SMESH_ControlsDef.hxx"
35 #include "SMESH_DeviceActor.h"
36 #include "SMESH_NodeLabelActor.h"
37 #include "SMESH_ObjectDef.h"
38 #include "SMESH_SVTKActor.h"
39 #include "SMESH_ScalarBarActor.h"
42 #include <SALOME_InteractiveObject.hxx>
43 #include <SUIT_ResourceMgr.h>
44 #include <SUIT_Session.h>
45 #include <VTKViewer_ExtractUnstructuredGrid.h>
46 #include <VTKViewer_FramedTextActor.h>
48 #ifndef DISABLE_PLOT2DVIEWER
49 #include <SPlot2d_Histogram.h>
52 #include <vtkProperty.h>
53 #include <vtkTimeStamp.h>
54 #include <vtkObjectFactory.h>
55 #include <vtkShrinkPolyData.h>
56 #include <vtkMergeFilter.h>
58 #include <vtkMatrix4x4.h>
59 #include <vtkUnstructuredGrid.h>
60 #include <vtkPointData.h>
61 #include <vtkCellData.h>
63 #include <vtkMapper.h>
64 #include <vtkRenderer.h>
67 #include <vtkIdList.h>
68 #include <vtkIntArray.h>
70 #include <vtkActor2D.h>
71 #include <vtkProperty2D.h>
72 #include <vtkPolyData.h>
73 #include <vtkTextProperty.h>
75 #include <vtkLookupTable.h>
79 #include <vtkPlaneCollection.h>
80 #include <vtkImplicitBoolean.h>
81 #include <vtkImplicitFunctionCollection.h>
83 #include "utilities.h"
86 static int MYDEBUG = 0;
88 static int MYDEBUG = 0;
91 SMESH_ActorDef* SMESH_ActorDef::New(){
92 return new SMESH_ActorDef();
96 SMESH_Actor* SMESH_Actor::New(TVisualObjPtr theVisualObj,
101 SMESH_ActorDef* anActor = NULL;
102 if(theVisualObj->IsValid() ) {
103 anActor = SMESH_ActorDef::New();
104 if(!anActor->Init(theVisualObj,theEntry,theName,theIsClear)){
109 anActor->UpdateScalarBar();
115 SMESH_ActorDef::SMESH_ActorDef()
117 if(MYDEBUG) MESSAGE("SMESH_ActorDef - "<<this);
119 SALOME_Actor::SetVisibility(false); // avoid update of pipelines
121 myBaseActor = SMESH_DeviceActor::New();
123 myTimeStamp = vtkTimeStamp::New();
125 myIsPointsVisible = false;
126 myIsEntityModeCache = false;
127 myRepresentationCache = 0;
129 myHighlightActor = SMESH_SVTKActor::New();
130 myHighlightActor->Delete(); // vtkSmartPointer!
131 myHighlightActor->Initialize();
133 myPreHighlightActor = SMESH_SVTKActor::New();
134 myPreHighlightActor->Delete();
135 myPreHighlightActor->Initialize();
137 myIsShrinkable = false;
140 myIsFacesOriented = false;
142 int controlsIncrement = SMESH_ActorProps::props()->controlsIncrement();
143 int selectionIncrement = SMESH_ActorProps::props()->selectionIncrement();
145 myControlsPrecision = -1;
146 SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
148 if ( mgr && mgr->booleanValue( "SMESH", "use_precision", false ) )
149 myControlsPrecision = mgr->integerValue( "SMESH", "controls_precision", -1);
151 double aElem0DSize = SMESH::GetFloat("SMESH:elem0d_size",5);
152 double aBallElemSize = SMESH::GetFloat("SMESH:ball_elem_size",10);
153 double aBallElemScale = SMESH::GetFloat("SMESH:ball_elem_scale",1.0);
154 double aLineWidth = SMESH::GetFloat("SMESH:element_width",1);
155 double aOutlineWidth = SMESH::GetFloat("SMESH:outline_width",1);
157 SMESH::LabelFont aFamilyNd = SMESH::FntTimes;
159 bool anItalicNd = false;
160 bool aShadowNd = false;
162 if ( mgr->hasValue( "SMESH", "numbering_node_font" ) ) {
163 QFont f = mgr->fontValue( "SMESH", "numbering_node_font" );
164 if ( f.family() == "Arial" ) aFamilyNd = SMESH::FntArial;
165 else if ( f.family() == "Courier" ) aFamilyNd = SMESH::FntCourier;
166 else if ( f.family() == "Times" ) aFamilyNd = SMESH::FntTimes;
168 anItalicNd = f.italic();
169 aShadowNd = f.overline();
170 aSizeNd = f.pointSize();
172 double anRGBNd[3] = {1,1,1};
173 SMESH::GetColor( "SMESH", "numbering_node_color", anRGBNd[0], anRGBNd[1], anRGBNd[2], QColor( 255, 255, 255 ) );
175 SMESH::LabelFont aFamilyEl = SMESH::FntTimes;
177 bool anItalicEl = false;
178 bool aShadowEl = false;
180 if ( mgr->hasValue( "SMESH", "numbering_elem_font" ) ) {
181 QFont f = mgr->fontValue( "SMESH", "numbering_elem_font" );
182 if ( f.family() == "Arial" ) aFamilyEl = SMESH::FntArial;
183 else if ( f.family() == "Courier" ) aFamilyEl = SMESH::FntCourier;
184 else if ( f.family() == "Times" ) aFamilyEl = SMESH::FntTimes;
186 anItalicEl = f.italic();
187 aShadowEl = f.overline();
188 aSizeEl = f.pointSize();
190 double anRGBEl[3] = {0,1,0};
191 SMESH::GetColor( "SMESH", "numbering_elem_color", anRGBEl[0], anRGBEl[1], anRGBEl[2], QColor( 0, 255, 0 ) );
193 vtkMatrix4x4 *aMatrix = vtkMatrix4x4::New();
194 VTKViewer_ExtractUnstructuredGrid* aFilter = NULL;
196 //Definition 2D and 3D devices of the actor
197 //-----------------------------------------
198 double anRGB[3] = {1,1,1};
199 mySurfaceProp = vtkProperty::New();
202 SMESH::GetColor( "SMESH", "fill_color", ffc, delta, "0,170,255|-100" ) ;
203 mySurfaceProp->SetColor( ffc.red() / 255. , ffc.green() / 255. , ffc.blue() / 255. );
204 myDeltaBrightness = delta;
206 myBackSurfaceProp = vtkProperty::New();
207 bfc = Qtx::mainColorToSecondary(ffc, delta);
208 myBackSurfaceProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
210 myNormalVProp = vtkProperty::New();
211 SMESH::GetColor( "SMESH", "volume_color", ffc, delta, "255,0,170|-100" );
212 myNormalVProp->SetColor( ffc.redF(), ffc.greenF(), ffc.blueF() );
213 myDeltaVBrightness = delta;
215 myReversedVProp = vtkProperty::New();
216 bfc = Qtx::mainColorToSecondary(ffc, delta);
217 myReversedVProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
219 my2DActor = SMESH_CellLabelActor::New();
220 my2DActor->SetStoreClippingMapping(true);
221 my2DActor->SetUserMatrix(aMatrix);
222 my2DActor->PickableOff();
223 my2DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
224 my2DActor->SetProperty(mySurfaceProp);
225 my2DActor->SetBackfaceProperty(myBackSurfaceProp);
226 my2DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
227 aFilter = my2DActor->GetExtractUnstructuredGrid();
228 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
229 aFilter->RegisterCellsWithType(VTK_TRIANGLE);
230 aFilter->RegisterCellsWithType(VTK_QUAD);
231 aFilter->RegisterCellsWithType(VTK_POLYGON);
232 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
233 aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
234 aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
235 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
236 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
238 my2DExtProp = vtkProperty::New();
239 my2DExtProp->DeepCopy(mySurfaceProp);
240 SMESH::GetColor( "SMESH", "fill_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
241 anRGB[0] = 1 - anRGB[0];
242 anRGB[1] = 1 - anRGB[1];
243 anRGB[2] = 1 - anRGB[2];
244 my2DExtProp->SetLineWidth(aLineWidth + controlsIncrement);
245 my2DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
247 my2DExtActor = SMESH_DeviceActor::New();
248 my2DExtActor->SetUserMatrix(aMatrix);
249 my2DExtActor->PickableOff();
250 my2DExtActor->SetProperty(my2DExtProp);
251 my2DExtActor->SetBackfaceProperty(my2DExtProp);
252 my2DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
253 aFilter = my2DExtActor->GetExtractUnstructuredGrid();
254 aFilter->RegisterCellsWithType(VTK_TRIANGLE);
255 aFilter->RegisterCellsWithType(VTK_QUAD);
256 aFilter->RegisterCellsWithType(VTK_POLYGON);
257 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
258 aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
259 aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
260 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
261 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
263 my3DActor = SMESH_CellLabelActor::New();
264 my3DActor->SetStoreClippingMapping(true);
265 my3DActor->SetUserMatrix(aMatrix);
266 my3DActor->PickableOff();
267 my3DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
268 my3DActor->SetProperty(myNormalVProp);
269 my3DActor->SetBackfaceProperty(myReversedVProp);
270 my3DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
271 my3DActor->SetCoincident3DAllowed(true);
272 aFilter = my3DActor->GetExtractUnstructuredGrid();
273 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
274 aFilter->RegisterCellsWithType(VTK_TETRA);
275 aFilter->RegisterCellsWithType(VTK_VOXEL);
276 aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
277 aFilter->RegisterCellsWithType(VTK_WEDGE);
278 aFilter->RegisterCellsWithType(VTK_PYRAMID);
279 aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
280 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
281 aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
282 aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
283 aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
284 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUADRATIC_WEDGE);
285 aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
286 aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
287 aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
289 my3DExtProp = vtkProperty::New();
290 my3DExtProp->DeepCopy(myNormalVProp);
291 SMESH::GetColor( "SMESH", "volume_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 0, 170 ) );
292 anRGB[0] = 1 - anRGB[0];
293 anRGB[1] = 1 - anRGB[1];
294 anRGB[2] = 1 - anRGB[2];
295 my3DExtProp->SetLineWidth(aLineWidth + controlsIncrement);
296 my3DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
298 my3DExtActor = SMESH_DeviceActor::New();
299 my3DExtActor->SetUserMatrix(aMatrix);
300 my3DExtActor->PickableOff();
301 my3DExtActor->SetProperty(my3DExtProp);
302 my3DExtActor->SetBackfaceProperty(my3DExtProp);
303 my3DExtActor->SetRepresentation(SMESH_DeviceActor::eSurface);
304 my3DExtActor->SetCoincident3DAllowed(true);
305 aFilter = my3DExtActor->GetExtractUnstructuredGrid();
306 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
307 aFilter->RegisterCellsWithType(VTK_TETRA);
308 aFilter->RegisterCellsWithType(VTK_VOXEL);
309 aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
310 aFilter->RegisterCellsWithType(VTK_WEDGE);
311 aFilter->RegisterCellsWithType(VTK_PYRAMID);
312 aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
313 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
314 aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
315 aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
316 aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
317 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUADRATIC_WEDGE);
318 aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
319 aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
320 aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
322 //Definition 1D device of the actor
323 //---------------------------------
324 myEdgeProp = vtkProperty::New();
325 myEdgeProp->SetAmbient(1.0);
326 myEdgeProp->SetDiffuse(0.0);
327 myEdgeProp->SetSpecular(0.0);
328 SMESH::GetColor( "SMESH", "wireframe_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
329 myEdgeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
330 myEdgeProp->SetLineWidth(aLineWidth);
332 // my1DActor is used to
334 // - show controls on all edges (eg Length)
335 // since edges are shown by myHighlitableActor
336 my1DActor = SMESH_CellLabelActor::New();
337 my1DActor->SetStoreClippingMapping(true);
338 my1DActor->SetUserMatrix(aMatrix);
339 my1DActor->PickableOff();
340 my1DActor->SetHighlited(true);
341 my1DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
342 my1DActor->SetProperty(myEdgeProp);
343 my1DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
344 aFilter = my1DActor->GetExtractUnstructuredGrid();
345 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
346 aFilter->RegisterCellsWithType(VTK_LINE);
347 aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
349 my1DProp = vtkProperty::New();
350 my1DProp->DeepCopy(myEdgeProp);
351 my1DProp->SetLineWidth(aLineWidth + controlsIncrement);
352 my1DProp->SetPointSize(aElem0DSize);
354 my1DExtProp = vtkProperty::New();
355 my1DExtProp->DeepCopy(myEdgeProp);
356 anRGB[0] = 1 - anRGB[0];
357 anRGB[1] = 1 - anRGB[1];
358 anRGB[2] = 1 - anRGB[2];
359 my1DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
360 my1DExtProp->SetLineWidth(aLineWidth + controlsIncrement);
361 my1DExtProp->SetPointSize(aElem0DSize);
363 // my1DExtActor is used to show filtered edges or links between nodes
364 my1DExtActor = SMESH_DeviceActor::New();
365 my1DExtActor->SetUserMatrix(aMatrix);
366 my1DExtActor->PickableOff();
367 my1DExtActor->SetHighlited(true);
368 my1DExtActor->SetVisibility(false);
369 my1DExtActor->SetProperty(my1DExtProp);
370 my1DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
371 aFilter = my1DExtActor->GetExtractUnstructuredGrid();
372 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
373 aFilter->RegisterCellsWithType(VTK_LINE);
374 aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
377 //Definition 0D device of the actor (0d elements)
378 //-----------------------------------------------
379 my0DProp = vtkProperty::New();
380 SMESH::GetColor( "SMESH", "elem0d_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 0 ) );
381 my0DProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
382 my0DProp->SetPointSize(aElem0DSize);
384 my0DActor = SMESH_CellLabelActor::New();
385 my0DActor->SetUserMatrix(aMatrix);
386 my0DActor->SetStoreClippingMapping(true);
387 my0DActor->PickableOff();
388 my0DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
389 my0DActor->SetVisibility(false);
390 my0DActor->SetProperty(my0DProp);
391 my0DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
392 aFilter = my0DActor->GetExtractUnstructuredGrid();
393 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
394 aFilter->RegisterCellsWithType(VTK_VERTEX);
396 //Definition 0D device of the actor (ball elements)
397 //-----------------------------------------------
398 myBallProp = vtkProperty::New();
399 SMESH::GetColor( "SMESH", "ball_elem_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 85, 255 ) );
400 myBallProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
401 myBallProp->SetPointSize(aBallElemSize);
403 myBallActor = SMESH_CellLabelActor::New();
404 myBallActor->SetUserMatrix(aMatrix);
405 myBallActor->SetStoreClippingMapping(true);
406 myBallActor->PickableOff();
407 myBallActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
408 myBallActor->SetVisibility(false);
409 myBallActor->SetProperty(myBallProp);
410 myBallActor->SetRepresentation(SMESH_DeviceActor::eSurface);
411 myBallActor->SetBallEnabled(true);
412 aFilter = myBallActor->GetExtractUnstructuredGrid();
413 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
414 aFilter->RegisterCellsWithType(VTK_POLY_VERTEX);
416 //my0DExtProp = vtkProperty::New();
417 //my0DExtProp->DeepCopy(my0DProp);
418 //anRGB[0] = 1 - anRGB[0];
419 //anRGB[1] = 1 - anRGB[1];
420 //anRGB[2] = 1 - anRGB[2];
421 //my0DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
422 //my0DExtProp->SetPointSize(aElem0DSize);
424 //my0DExtActor = SMESH_DeviceActor::New();
425 //my0DExtActor->SetUserMatrix(aMatrix);
426 //my0DExtActor->SetStoreClippingMapping(true);
427 //my0DExtActor->PickableOff();
428 //my0DExtActor->SetHighlited(true);
429 //my0DExtActor->SetVisibility(false);
430 //my0DExtActor->SetProperty(my0DExtProp);
431 //my0DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
432 //aFilter = my0DExtActor->GetExtractUnstructuredGrid();
433 ////aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
434 //aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
435 //aFilter->RegisterCellsWithType(VTK_VERTEX);
438 //Definition 0D device of the actor (nodes)
439 //-----------------------------------------
440 myNodeProp = vtkProperty::New();
441 SMESH::GetColor( "SMESH", "node_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 0, 0 ) );
442 myNodeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
444 myNodeActor = SMESH_NodeLabelActor::New();
445 myNodeActor->SetUserMatrix(aMatrix);
446 myNodeActor->SetStoreClippingMapping(true);
447 myNodeActor->PickableOff();
448 myNodeActor->SetVisibility(false);
449 myNodeActor->SetFontProperties( aFamilyNd, aSizeNd, aBoldNd, anItalicNd, aShadowNd, anRGBNd[0], anRGBNd[1], anRGBNd[2] );
450 myNodeActor->SetProperty(myNodeProp);
451 myNodeActor->SetRepresentation(SMESH_DeviceActor::ePoint);
452 aFilter = myNodeActor->GetExtractUnstructuredGrid();
453 aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
455 myNodeExtProp = vtkProperty::New();
456 myNodeExtProp->DeepCopy(myNodeProp);
457 anRGB[0] = 1 - anRGB[0];
458 anRGB[1] = 1 - anRGB[1];
459 anRGB[2] = 1 - anRGB[2];
460 myNodeExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
462 myNodeExtActor = SMESH_DeviceActor::New();
463 myNodeExtActor->SetUserMatrix(aMatrix);
464 myNodeExtActor->SetStoreClippingMapping(true);
465 myNodeExtActor->PickableOff();
466 myNodeExtActor->SetHighlited(true);
467 myNodeExtActor->SetVisibility(false);
468 myNodeExtActor->SetProperty(myNodeExtProp);
469 myNodeExtActor->SetRepresentation(SMESH_DeviceActor::ePoint);
470 aFilter = myNodeExtActor->GetExtractUnstructuredGrid();
471 aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
472 aFilter->RegisterCellsWithType(VTK_VERTEX);
474 //Definition of Pickable and Highlitable engines
475 //----------------------------------------------
477 myBaseActor->SetUserMatrix(aMatrix);
478 myBaseActor->SetStoreIDMapping(true);
479 myBaseActor->SetStoreClippingMapping(true);
480 myBaseActor->SetStoreGemetryMapping(true);
481 myBaseActor->GetProperty()->SetOpacity(0.0);
482 myPickableActor = myBaseActor;
484 myHighlightProp = vtkProperty::New();
485 myHighlightProp->SetAmbient(1.0);
486 myHighlightProp->SetDiffuse(0.0);
487 myHighlightProp->SetSpecular(0.0);
488 SMESH::GetColor( "SMESH", "selection_object_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 255, 255 ) );
489 myHighlightProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
490 myHighlightProp->SetPointSize(aElem0DSize); // ??
491 myHighlightProp->SetLineWidth(aLineWidth + selectionIncrement);
492 myHighlightProp->SetRepresentation(1);
494 myOutLineProp = vtkProperty::New();
495 myOutLineProp->SetAmbient(1.0);
496 myOutLineProp->SetDiffuse(0.0);
497 myOutLineProp->SetSpecular(0.0);
498 SMESH::GetColor( "SMESH", "outline_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 70, 0 ) );
499 myOutLineProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
500 myOutLineProp->SetLineWidth(aOutlineWidth);
501 myOutLineProp->SetRepresentation(1);
503 myPreselectProp = vtkProperty::New();
504 myPreselectProp->SetAmbient(1.0);
505 myPreselectProp->SetDiffuse(0.0);
506 myPreselectProp->SetSpecular(0.0);
507 SMESH::GetColor( "SMESH", "highlight_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 255 ) );
508 myPreselectProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
509 myPreselectProp->SetPointSize(aElem0DSize); // ??
510 myPreselectProp->SetLineWidth(aLineWidth + selectionIncrement);
511 myPreselectProp->SetRepresentation(1);
513 myHighlitableActor = SMESH_DeviceActor::New();
514 myHighlitableActor->SetUserMatrix(aMatrix);
515 myHighlitableActor->PickableOff();
516 myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
517 myHighlitableActor->SetCoincident3DAllowed(true);
524 myControlMode = eNone;
525 myControlActor = my2DActor;
527 //Definition of myScalarBarActor
528 //------------------------------
529 myLookupTable = vtkLookupTable::New();
530 //Fix for Bug PAL5195 - SMESH764:
531 //Controls - Aspect Ratio: incorrect colors of the best and worst values
532 myLookupTable->SetHueRange(0.667,0.0);
534 myScalarBarActor = SMESH_ScalarBarActor::New();
535 myScalarBarActor->SetVisibility(false);
536 myScalarBarActor->SetLookupTable(myLookupTable);
539 //Incorrect "Min value" in Scalar Bar in Mesh:
540 // myScalarBarActor->SetLabelFormat("%.4g");
541 // changes was commented because of regression bug IPAL 19981
543 mgr = SUIT_Session::session()->resourceMgr();
547 myEntityMode = eAllEntity;
548 myEntityModeCache = eAllEntity;
551 myImplicitBoolean = vtkImplicitBoolean::New();
552 myImplicitBoolean->SetOperationTypeToIntersection();
554 myPlaneCollection = vtkPlaneCollection::New();
556 //Quadratic 2D elements representation
557 //-----------------------------------------------------------------------------
558 int aQuadratic2DMode = mgr->integerValue( "SMESH", "quadratic_mode", 0);
559 if(aQuadratic2DMode == 0){
560 myHighlitableActor->SetQuadraticArcMode(false);
561 my2DActor->SetQuadraticArcMode(false);
562 my1DActor->SetQuadraticArcMode(false);
564 else if(aQuadratic2DMode == 1){
565 myHighlitableActor->SetQuadraticArcMode(true);
566 my2DActor->SetQuadraticArcMode(true);
567 my1DActor->SetQuadraticArcMode(true);
570 int aQuadraticAngle = mgr->integerValue( "SMESH", "max_angle", 2);
571 myHighlitableActor->SetQuadraticArcAngle(aQuadraticAngle);
572 my2DActor->SetQuadraticArcAngle(aQuadraticAngle);
574 // Set colors of the name actor
575 SMESH::GetColor( "SMESH", "default_grp_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
576 myNameActor->SetBackgroundColor(anRGB[0], anRGB[1], anRGB[2]);
577 SMESH::GetColor( "SMESH", "group_name_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 255, 255 ) );
578 myNameActor->SetForegroundColor(anRGB[0], anRGB[1], anRGB[2]);
580 #ifndef DISABLE_PLOT2DVIEWER
584 SetBallSize(aBallElemSize);
585 SetBallScale(aBallElemScale);
586 Set0DSize(aElem0DSize);
590 SMESH_ActorDef::~SMESH_ActorDef()
592 if(MYDEBUG) MESSAGE("~SMESH_ActorDef - "<<this);
594 // Please keep the order same as one in the header file
596 myTimeStamp->Delete();
598 myScalarBarActor->Delete();
599 myLookupTable->Delete();
601 mySurfaceProp->Delete();
602 myBackSurfaceProp->Delete();
603 myNormalVProp->Delete();
604 myReversedVProp->Delete();
605 myEdgeProp->Delete();
606 myNodeProp->Delete();
608 myNodeActor->Delete();
609 myBaseActor->Delete();
610 //myPickableActor->Delete(); myPickableActor == myBaseActor
612 myHighlightProp->Delete();
613 myOutLineProp->Delete();
614 myPreselectProp->Delete();
616 myHighlitableActor->Delete();
618 my2DExtProp->Delete();
619 my3DExtProp->Delete();
621 my2DExtActor->Delete();
623 my3DExtActor->Delete();
624 // myControlActor->Delete(); myControlActor == my2DActor
626 myNodeExtProp->Delete();
627 myNodeExtActor->Delete();
631 my1DExtProp->Delete();
632 my1DExtActor->Delete();
636 myBallProp->Delete();
637 myBallActor->Delete();
638 //my0DExtProp->Delete();
639 //my0DExtActor->Delete();
641 myImplicitBoolean->Delete();
642 myPlaneCollection->Delete();
644 #ifndef DISABLE_PLOT2DVIEWER
646 SMESH::ProcessIn2DViewers(this,SMESH::RemoveFrom2dViewer);
647 delete my2dHistogram;
652 void SMESH_ActorDef::Delete()
654 // This is just to guarantee that the DeleteActorEvent (which was previously invoked
655 // from the actor's destructor) will be thrown before removing the actor's observers,
656 // that is done inside the Superclass::Delete() method but before the destructor itself
657 // (see the issue 0021562: EDF SMESH: clipping and delete mesh clipped leads to crash).
658 // The event is caught by SMESHGUI::ProcessEvents() static method.
659 this->InvokeEvent( SMESH::DeleteActorEvent, NULL );
661 Superclass::Delete();
664 void SMESH_ActorDef::SetPointsLabeled( bool theIsPointsLabeled )
667 myNodeActor->SetPointsLabeled(theIsPointsLabeled);
668 SetRepresentation(GetRepresentation());
669 myTimeStamp->Modified();
673 void SMESH_ActorDef::SetPointsFontProperties( SMESH::LabelFont theFamily, int theSize,
674 bool theBold, bool theItalic, bool theShadow,
675 double r, double g, double b )
678 myNodeActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
679 SetRepresentation( GetRepresentation() );
680 myTimeStamp->Modified();
684 void SMESH_ActorDef::SetCellsFontProperties( SMESH::LabelFont theFamily, int theSize,
685 bool theBold, bool theItalic, bool theShadow,
686 double r, double g, double b )
689 my3DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
692 my2DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
693 SetRepresentation( GetRepresentation() );
694 myTimeStamp->Modified();
697 my1DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
698 SetRepresentation( GetRepresentation() );
699 myTimeStamp->Modified();
702 my0DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
703 SetRepresentation( GetRepresentation() );
704 myTimeStamp->Modified();
707 myBallActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
708 SetRepresentation( GetRepresentation() );
709 myTimeStamp->Modified();
713 bool SMESH_ActorDef::GetPointsLabeled()
715 return myNodeActor && myNodeActor->GetPointsLabeled();
718 void SMESH_ActorDef::SetCellsLabeled(bool theIsCellsLabeled)
721 my3DActor->SetCellsLabeled(theIsCellsLabeled);
724 my2DActor->SetCellsLabeled(theIsCellsLabeled);
727 my1DActor->SetCellsLabeled(theIsCellsLabeled);
730 my0DActor->SetCellsLabeled(theIsCellsLabeled);
733 myBallActor->SetCellsLabeled(theIsCellsLabeled);
735 SetRepresentation(GetRepresentation());
736 myTimeStamp->Modified();
740 bool SMESH_ActorDef::GetCellsLabeled()
744 result = result || my3DActor->GetCellsLabeled();
747 result = result || my2DActor->GetCellsLabeled();
750 result = result || my1DActor->GetCellsLabeled();
753 result = result || my0DActor->GetCellsLabeled();
756 result = result || myBallActor->GetCellsLabeled();
762 void SMESH_ActorDef::SetFacesOriented(bool theIsFacesOriented)
764 myIsFacesOriented = theIsFacesOriented;
766 my2DActor->SetFacesOriented(theIsFacesOriented);
767 my3DActor->SetFacesOriented(theIsFacesOriented);
769 myTimeStamp->Modified();
772 bool SMESH_ActorDef::GetFacesOriented()
774 return myIsFacesOriented;
777 void SMESH_ActorDef::SetFacesOrientationColor(double r,double g,double b)
779 my2DActor->SetFacesOrientationColor( r, g, b );
780 my3DActor->SetFacesOrientationColor( r, g, b );
783 void SMESH_ActorDef::GetFacesOrientationColor(double& r,double& g,double& b)
785 my3DActor->GetFacesOrientationColor( r, g, b );
788 void SMESH_ActorDef::SetFacesOrientationScale(double theScale)
790 my2DActor->SetFacesOrientationScale( theScale );
791 my3DActor->SetFacesOrientationScale( theScale );
794 double SMESH_ActorDef::GetFacesOrientationScale()
796 return my3DActor->GetFacesOrientationScale();
799 void SMESH_ActorDef::SetFacesOrientation3DVectors(bool theState)
801 my2DActor->SetFacesOrientation3DVectors( theState );
802 my3DActor->SetFacesOrientation3DVectors( theState );
805 bool SMESH_ActorDef::GetFacesOrientation3DVectors()
807 return my3DActor->GetFacesOrientation3DVectors();
811 void SMESH_ActorDef::SetControl(SMESH::Controls::FunctorPtr theFunctor)
813 myFunctor = theFunctor;
815 SetControlMode( eNone, true );
817 SetControlMode( eCustomControl, true );
820 void SMESH_ActorDef::SetControlMode(eControl theMode)
822 SetControlMode(theMode,true);
825 void SMESH_ActorDef::SetControlMode( eControl theMode, bool theCheckEntityMode )
827 vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
828 bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
829 lookupTable->SetScale(VTK_SCALE_LINEAR);
831 SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
835 //myControlMode = eNone;
836 myControlMode = theMode;
837 theCheckEntityMode &= mgr->booleanValue( "SMESH", "display_entity", false );
839 my0DActor->GetMapper()->SetScalarVisibility(false);
840 my1DActor->GetMapper()->SetScalarVisibility(false);
841 my2DActor->GetMapper()->SetScalarVisibility(false);
842 my3DActor->GetMapper()->SetScalarVisibility(false);
843 myBallActor->GetMapper()->SetScalarVisibility(false);
844 myScalarBarActor->SetVisibility(false);
846 bool anIsScalarVisible = theMode > eNone;
848 if(anIsScalarVisible) {
852 SMESH::Controls::Length* aControl = new SMESH::Controls::Length();
853 aControl->SetPrecision( myControlsPrecision );
854 myFunctor.reset( aControl );
855 myControlActor = my1DActor;
859 myFunctor.reset(new SMESH::Controls::Length2D());
860 myControlActor = my2DActor;
863 myFunctor.reset(new SMESH::Controls::FreeBorders());
864 myControlActor = my1DActor;
867 myFunctor.reset(new SMESH::Controls::FreeEdges());
868 myControlActor = my2DActor;
871 myFunctor.reset(new SMESH::Controls::FreeNodes());
872 myControlActor = myNodeActor;
875 myFunctor.reset(new SMESH::Controls::FreeFaces());
876 myControlActor = my2DActor;
878 case eCoincidentNodes:
880 SMESH::Controls::CoincidentNodes* cn = new SMESH::Controls::CoincidentNodes();
881 double tol = mgr->doubleValue( "SMESH", "equal_nodes_tolerance", 1e-7 );
882 cn->SetTolerance( tol );
884 myControlActor = myNodeActor;
887 case eCoincidentElems1D:
888 myFunctor.reset(new SMESH::Controls::CoincidentElements1D());
889 myControlActor = my1DActor;
891 case eCoincidentElems2D:
892 myFunctor.reset(new SMESH::Controls::CoincidentElements2D());
893 myControlActor = my2DActor;
895 case eCoincidentElems3D:
896 myFunctor.reset(new SMESH::Controls::CoincidentElements3D());
897 myControlActor = my3DActor;
899 case eBareBorderFace:
900 myFunctor.reset(new SMESH::Controls::BareBorderFace());
901 myControlActor = my2DActor;
903 case eOverConstrainedFace:
904 myFunctor.reset(new SMESH::Controls::OverConstrainedFace());
905 myControlActor = my2DActor;
907 case eMultiConnection:
908 myFunctor.reset(new SMESH::Controls::MultiConnection());
909 myControlActor = my1DActor;
911 case eMultiConnection2D:
912 myFunctor.reset(new SMESH::Controls::MultiConnection2D());
913 myControlActor = my2DActor;
917 SMESH::Controls::Area* aControl = new SMESH::Controls::Area();
918 aControl->SetPrecision( myControlsPrecision );
919 myFunctor.reset( aControl );
920 myControlActor = my2DActor;
925 SMESH::Controls::Taper* aControl = new SMESH::Controls::Taper();
926 aControl->SetPrecision( myControlsPrecision );
927 myFunctor.reset( aControl );
928 myControlActor = my2DActor;
933 SMESH::Controls::AspectRatio* aControl = new SMESH::Controls::AspectRatio();
934 aControl->SetPrecision( myControlsPrecision );
935 myFunctor.reset( aControl );
936 myControlActor = my2DActor;
941 SMESH::Controls::AspectRatio3D* aControl = new SMESH::Controls::AspectRatio3D();
942 aControl->SetPrecision( myControlsPrecision );
943 myFunctor.reset( aControl );
944 myControlActor = my3DActor;
949 SMESH::Controls::Volume* aControl = new SMESH::Controls::Volume();
950 aControl->SetPrecision( myControlsPrecision );
951 myFunctor.reset( aControl );
952 myControlActor = my3DActor;
955 case eMaxElementLength2D:
957 SMESH::Controls::MaxElementLength2D* aControl = new SMESH::Controls::MaxElementLength2D();
958 aControl->SetPrecision( myControlsPrecision );
959 myFunctor.reset( aControl );
960 myControlActor = my2DActor;
963 case eMaxElementLength3D:
965 SMESH::Controls::MaxElementLength3D* aControl = new SMESH::Controls::MaxElementLength3D();
966 aControl->SetPrecision( myControlsPrecision );
967 myFunctor.reset( aControl );
968 myControlActor = my3DActor;
973 SMESH::Controls::Deflection2D* aControl = new SMESH::Controls::Deflection2D();
974 aControl->SetPrecision( myControlsPrecision );
975 myFunctor.reset( aControl );
976 myControlActor = my2DActor;
979 case eBareBorderVolume:
981 myFunctor.reset(new SMESH::Controls::BareBorderVolume());
982 myControlActor = my3DActor;
985 case eOverConstrainedVolume:
987 myFunctor.reset(new SMESH::Controls::OverConstrainedVolume());
988 myControlActor = my3DActor;
993 SMESH::Controls::MinimumAngle* aControl = new SMESH::Controls::MinimumAngle();
994 aControl->SetPrecision( myControlsPrecision );
995 myFunctor.reset( aControl );
996 myControlActor = my2DActor;
1001 SMESH::Controls::Warping* aControl = new SMESH::Controls::Warping();
1002 aControl->SetPrecision( myControlsPrecision );
1003 myFunctor.reset( aControl );
1004 myControlActor = my2DActor;
1009 SMESH::Controls::Skew* aControl = new SMESH::Controls::Skew();
1010 aControl->SetPrecision( myControlsPrecision );
1011 myFunctor.reset( aControl );
1012 myControlActor = my2DActor;
1015 case eNodeConnectivityNb:
1017 myFunctor.reset( new SMESH::Controls::NodeConnectivityNumber() );
1018 myControlActor = myNodeActor;
1021 case eCustomControl:
1025 switch ( myFunctor->GetType() ) {
1026 case SMDSAbs_Node : myControlActor = myNodeActor; break;
1027 case SMDSAbs_Edge : myControlActor = my1DActor; break;
1028 case SMDSAbs_Face : myControlActor = my2DActor; break;
1029 case SMDSAbs_Volume : myControlActor = my3DActor; break;
1038 int aNbCells = myFunctor ? myVisualObj->GetNbEntities( myFunctor->GetType() ) : 0;
1039 bool aShowOnlyScalarBarTitle = false;
1041 //myControlMode = theMode;
1042 switch(myControlMode){
1044 case eCoincidentNodes:
1045 myNodeExtActor->SetExtControlMode(myFunctor);
1046 aShowOnlyScalarBarTitle = true;
1050 case eCoincidentElems1D:
1051 my1DExtActor->SetExtControlMode(myFunctor);
1052 aShowOnlyScalarBarTitle = true;
1055 case eBareBorderFace:
1056 case eOverConstrainedFace:
1057 case eCoincidentElems2D:
1058 my2DExtActor->SetExtControlMode(myFunctor);
1059 aShowOnlyScalarBarTitle = true;
1061 case eBareBorderVolume:
1062 case eOverConstrainedVolume:
1063 case eCoincidentElems3D:
1064 my3DExtActor->SetExtControlMode(myFunctor);
1065 aShowOnlyScalarBarTitle = true;
1068 case eMultiConnection2D:
1069 my1DExtActor->SetExtControlMode(myFunctor,myScalarBarActor,myLookupTable);
1070 UpdateDistribution();
1073 myControlActor->SetControlMode(myFunctor,myScalarBarActor,myLookupTable);
1074 UpdateDistribution();
1076 myScalarBarActor->SetTitleOnlyVisibility(aShowOnlyScalarBarTitle);
1079 if(theCheckEntityMode) {
1080 // if(myControlActor == myNodeActor) {
1081 // if ( myControlMode == eNodeConnectivityNb ) {
1082 // if (!myIsEntityModeCache){
1083 // myEntityModeCache = GetEntityMode();
1084 // myIsEntityModeCache=true;
1086 // SetEntityMode(0);
1089 if(myControlActor == my1DActor) {
1090 if (!myIsEntityModeCache){
1091 myEntityModeCache = GetEntityMode();
1092 myIsEntityModeCache=true;
1094 SetEntityMode(eEdges);
1096 else if(myControlActor == my2DActor) {
1097 if (!myIsEntityModeCache){
1098 myEntityModeCache = GetEntityMode();
1099 myIsEntityModeCache=true;
1101 SetEntityMode(eFaces);
1103 else if(myControlActor == my3DActor) {
1104 if (!myIsEntityModeCache){
1105 myEntityModeCache = GetEntityMode();
1106 myIsEntityModeCache=true;
1108 SetEntityMode(eVolumes);
1111 QString aTitle = QString(myScalarBarActor->GetTitle());
1112 aTitle.replace(QRegExp("(:\\s).*"),"\\1"+ QString::number(GetNumberControlEntities()));
1113 myScalarBarActor->SetTitle(aTitle.toUtf8().constData());
1117 if(theCheckEntityMode){
1118 myEntityMode = myEntityModeCache;
1119 myIsEntityModeCache = false;
1124 SetRepresentation(GetRepresentation());
1126 myTimeStamp->Modified();
1129 lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
1130 double * range = lookupTable->GetRange();
1132 if (isLogarithmic && range[0] > 1e-07 && range[1] > 1e-07)
1133 lookupTable->SetScale(VTK_SCALE_LOG10);
1138 int SMESH_ActorDef::GetNumberControlEntities()
1140 SMESH_DeviceActor* anAct = NULL;
1141 switch(myControlMode){
1143 case eCoincidentNodes:
1144 anAct = myNodeExtActor;
1148 case eCoincidentElems1D:
1149 anAct = my1DExtActor;
1152 case eBareBorderFace:
1153 case eOverConstrainedFace:
1154 case eCoincidentElems2D:
1155 anAct = my2DExtActor;
1157 case eBareBorderVolume:
1158 case eOverConstrainedVolume:
1159 case eCoincidentElems3D:
1160 anAct = my3DExtActor;
1164 return (anAct) ? anAct->GetUnstructuredGrid()->GetNumberOfCells() : -1;
1167 void SMESH_ActorDef::AddToRender(vtkRenderer* theRenderer)
1169 if ( !mySelector || !mySelector->IsSelectionEnabled() )
1171 myBaseActor->SetUnstructuredGrid( NULL );
1172 //myHighlitableActor->SetUnstructuredGrid( NULL );
1174 theRenderer->AddActor(myBaseActor);
1175 theRenderer->AddActor(myNodeExtActor);
1176 theRenderer->AddActor(my1DExtActor);
1178 my3DActor ->AddToRender(theRenderer);
1179 my3DExtActor->AddToRender(theRenderer);
1180 my2DActor ->AddToRender(theRenderer);
1181 my2DExtActor->AddToRender(theRenderer);
1182 myNodeActor ->AddToRender(theRenderer);
1183 my1DActor ->AddToRender(theRenderer);
1184 my0DActor ->AddToRender(theRenderer);
1185 myBallActor ->AddToRender(theRenderer);
1187 theRenderer->AddActor(myHighlitableActor);
1189 theRenderer->AddActor2D(myScalarBarActor);
1191 // the superclass' method should be called at the end
1192 // (in particular, for correct work of selection)
1193 SALOME_Actor::AddToRender(theRenderer);
1196 void SMESH_ActorDef::RemoveFromRender(vtkRenderer* theRenderer)
1198 SALOME_Actor::RemoveFromRender(theRenderer);
1200 theRenderer->RemoveActor(myBaseActor);
1202 theRenderer->RemoveActor(myNodeExtActor);
1204 theRenderer->RemoveActor(myHighlitableActor);
1206 //theRenderer->RemoveActor(my0DExtActor);
1208 theRenderer->RemoveActor(my1DExtActor);
1210 my2DActor->RemoveFromRender(theRenderer);
1211 my2DExtActor->RemoveFromRender(theRenderer);
1212 my3DActor->RemoveFromRender(theRenderer);
1213 my3DExtActor->RemoveFromRender(theRenderer);
1214 myNodeActor->RemoveFromRender(theRenderer);
1215 my0DActor->RemoveFromRender(theRenderer);
1216 myBallActor->RemoveFromRender(theRenderer);
1217 my1DActor->RemoveFromRender(theRenderer);
1219 theRenderer->RemoveActor(myScalarBarActor);
1223 bool SMESH_ActorDef::Init(TVisualObjPtr theVisualObj,
1224 const char* theEntry,
1225 const char* theName,
1228 Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(theEntry,"SMESH",theName);
1232 myVisualObj = theVisualObj;
1233 myVisualObj->Update(theIsClear);
1235 SMESH_SVTKActor::SafeDownCast(myHighlightActor)->SetVisualObject(myVisualObj);
1236 SMESH_SVTKActor::SafeDownCast(myPreHighlightActor)->SetVisualObject(myVisualObj);
1238 myNodeActor->Init(myVisualObj,myImplicitBoolean);
1239 myBaseActor->Init(myVisualObj,myImplicitBoolean);
1241 myHighlitableActor->Init(myVisualObj,myImplicitBoolean);
1243 myNodeExtActor->Init(myVisualObj,myImplicitBoolean);
1245 my0DActor->Init(myVisualObj,myImplicitBoolean);
1246 myBallActor->Init(myVisualObj,myImplicitBoolean);
1247 //my0DExtActor->Init(myVisualObj,myImplicitBoolean);
1249 my1DActor->Init(myVisualObj,myImplicitBoolean);
1250 my1DExtActor->Init(myVisualObj,myImplicitBoolean);
1252 my2DActor->Init(myVisualObj,myImplicitBoolean);
1253 my2DExtActor->Init(myVisualObj,myImplicitBoolean);
1254 my3DActor->Init(myVisualObj,myImplicitBoolean);
1255 my3DExtActor->Init(myVisualObj,myImplicitBoolean);
1257 my0DActor->GetMapper()->SetLookupTable(myLookupTable);
1258 myBallActor->GetMapper()->SetLookupTable(myLookupTable);
1259 //my0DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1261 my1DActor->GetMapper()->SetLookupTable(myLookupTable);
1262 my1DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1264 my2DActor->GetMapper()->SetLookupTable(myLookupTable);
1265 my2DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1266 my3DActor->GetMapper()->SetLookupTable(myLookupTable);
1267 my3DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1269 double aFactor, aUnits;
1270 my2DActor->GetPolygonOffsetParameters(aFactor,aUnits);
1271 my2DActor->SetPolygonOffsetParameters(aFactor,aUnits*0.75);
1272 my2DExtActor->SetPolygonOffsetParameters(aFactor,aUnits*0.5);
1273 my3DActor->SetPolygonOffsetParameters(2*aFactor,aUnits);
1275 SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
1279 //SetIsShrunkable(theGrid->GetNumberOfCells() > 10);
1280 SetIsShrunkable(true);
1282 SetShrinkFactor( SMESH::GetFloat( "SMESH:shrink_coeff", 75 ) / 100. );
1284 int aMode = mgr->integerValue( "SMESH", "display_mode" );
1285 SetRepresentation(-1);
1288 SetRepresentation(eEdge);
1289 }else if(aMode == 1){
1290 SetRepresentation(eSurface);
1291 }else if(aMode == 2){
1292 SetRepresentation(ePoint);
1299 if( dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1300 SetIsDisplayNameActor( true );
1302 int aMarkerType = mgr->integerValue( "SMESH", "type_of_marker", 1 ); // dot
1303 int aMarkerScale = mgr->integerValue( "SMESH", "marker_scale", 9 ); // 5 pixels
1304 SetMarkerStd( (VTK::MarkerType)aMarkerType, (VTK::MarkerScale)aMarkerScale );
1306 myTimeStamp->Modified();
1312 double* SMESH_ActorDef::GetBounds()
1314 if ( GetNumberOfClippingPlanes() + myPlaneCollection->GetNumberOfItems() > 0 )
1315 return myNodeActor->GetBounds();
1316 return myVisualObj->GetUnstructuredGrid()->GetPoints()->GetBounds();
1320 vtkDataSet* SMESH_ActorDef::GetInput()
1322 return GetUnstructuredGrid();
1326 void SMESH_ActorDef::SetTransform(VTKViewer_Transform* theTransform)
1328 Superclass::SetTransform(theTransform);
1330 myNodeActor->SetTransform(theTransform);
1331 myBaseActor->SetTransform(theTransform);
1333 myHighlitableActor->SetTransform(theTransform);
1335 myNodeExtActor->SetTransform(theTransform);
1337 my0DActor->SetTransform(theTransform);
1338 myBallActor->SetTransform(theTransform);
1339 //my0DExtActor->SetTransform(theTransform);
1341 my1DActor->SetTransform(theTransform);
1342 my1DExtActor->SetTransform(theTransform);
1344 my2DActor->SetTransform(theTransform);
1345 my2DExtActor->SetTransform(theTransform);
1346 my3DActor->SetTransform(theTransform);
1347 my3DExtActor->SetTransform(theTransform);
1353 void SMESH_ActorDef::SetMapper(vtkMapper* theMapper)
1355 vtkLODActor::SetMapper(theMapper);
1359 void SMESH_ActorDef::ShallowCopy(vtkProp *prop)
1361 SALOME_Actor::ShallowCopy(prop);
1365 vtkMapper* SMESH_ActorDef::GetMapper()
1367 return myPickableActor->GetMapper();
1371 vtkUnstructuredGrid* SMESH_ActorDef::GetUnstructuredGrid()
1373 return myVisualObj->GetUnstructuredGrid();
1377 bool SMESH_ActorDef::IsInfinitive()
1379 vtkDataSet *aDataSet = myPickableActor->GetUnstructuredGrid();
1380 myIsInfinite = aDataSet->GetNumberOfCells() == 0 ||
1381 ( aDataSet->GetNumberOfCells() == 1 &&
1382 aDataSet->GetCell(0)->GetCellType() == VTK_VERTEX );
1383 return SALOME_Actor::IsInfinitive();
1387 void SMESH_ActorDef::SetIsShrunkable(bool theShrunkable)
1389 if ( myIsShrinkable == theShrunkable )
1391 myIsShrinkable = theShrunkable;
1395 double SMESH_ActorDef::GetShrinkFactor()
1397 return myBaseActor->GetShrinkFactor();
1400 void SMESH_ActorDef::SetShrinkFactor(double theValue)
1402 myBaseActor->SetShrinkFactor(theValue);
1404 my1DActor->SetShrinkFactor(theValue);
1405 my1DExtActor->SetShrinkFactor(theValue);
1407 my2DActor->SetShrinkFactor(theValue);
1408 my2DExtActor->SetShrinkFactor(theValue);
1409 my3DActor->SetShrinkFactor(theValue);
1410 my3DExtActor->SetShrinkFactor(theValue);
1411 my3DExtActor->SetShrinkFactor(theValue);
1412 myHighlitableActor->SetShrinkFactor(theValue);
1417 void SMESH_ActorDef::SetShrink()
1419 if(!myIsShrinkable) return;
1421 myBaseActor->SetShrink();
1423 my1DActor->SetShrink();
1424 my1DExtActor->SetShrink();
1426 my2DActor->SetShrink();
1427 my2DExtActor->SetShrink();
1428 my3DActor->SetShrink();
1429 my3DExtActor->SetShrink();
1430 myHighlitableActor->SetShrink();
1436 void SMESH_ActorDef::UnShrink()
1438 if(!myIsShrunk) return;
1440 myBaseActor->UnShrink();
1442 my1DActor->UnShrink();
1443 my1DExtActor->UnShrink();
1445 my2DActor->UnShrink();
1446 my2DExtActor->UnShrink();
1447 my3DActor->UnShrink();
1448 my3DExtActor->UnShrink();
1449 myHighlitableActor->UnShrink();
1456 int SMESH_ActorDef::GetNodeObjId(int theVtkID)
1458 return myPickableActor->GetNodeObjId(theVtkID);
1461 double* SMESH_ActorDef::GetNodeCoord(int theObjID)
1463 return myPickableActor->GetNodeCoord(theObjID);
1466 int SMESH_ActorDef::GetNodeVtkId(int theObjID)
1468 return myPickableActor->GetNodeVtkId(theObjID);
1471 int SMESH_ActorDef::GetElemObjId(int theVtkID)
1473 return myPickableActor->GetElemObjId(theVtkID);
1476 vtkCell* SMESH_ActorDef::GetElemCell(int theObjID)
1478 return myPickableActor->GetElemCell(theObjID);
1482 void SMESH_ActorDef::SetVisibility(int theMode)
1484 SetVisibility(theMode,true);
1488 void SMESH_ActorDef::SetVisibility(int theMode, bool theIsUpdateRepersentation)
1490 SALOME_Actor::SetVisibility(theMode);
1492 myNodeActor->VisibilityOff();
1493 myBaseActor->VisibilityOff();
1495 myNodeExtActor->VisibilityOff();
1497 my0DActor->VisibilityOff();
1498 myBallActor->VisibilityOff();
1499 //my0DExtActor->VisibilityOff();
1501 my1DActor->VisibilityOff();
1502 my1DExtActor->VisibilityOff();
1504 my2DActor->VisibilityOff();
1505 my2DExtActor->VisibilityOff();
1506 my3DActor->VisibilityOff();
1507 my3DExtActor->VisibilityOff();
1509 myScalarBarActor->VisibilityOff();
1511 if ( GetVisibility() ) {
1512 if ( theIsUpdateRepersentation )
1513 SetRepresentation(GetRepresentation());
1515 if(myControlMode != eNone) {
1516 switch(myControlMode) {
1518 case eCoincidentNodes:
1519 myNodeExtActor->VisibilityOn();
1522 case eMultiConnection:
1523 my1DActor->VisibilityOn();
1527 case eCoincidentElems1D:
1529 case eMultiConnection2D:
1530 my1DExtActor->VisibilityOn();
1533 case eBareBorderFace:
1534 case eOverConstrainedFace:
1535 case eCoincidentElems2D:
1536 my2DExtActor->VisibilityOn();
1538 case eBareBorderVolume:
1539 case eOverConstrainedVolume:
1540 case eCoincidentElems3D:
1541 my3DExtActor->VisibilityOn();
1545 if ( myFunctor && myVisualObj->GetNbEntities( myFunctor->GetType() ))
1546 myScalarBarActor->VisibilityOn();
1549 if ( GetPickable( ))
1550 myPickableActor->VisibilityOn();
1552 if ( GetRepresentation() != ePoint )
1554 if(myEntityMode & e0DElements ){
1555 my0DActor->VisibilityOn();
1557 if(myEntityMode & eBallElem ){
1558 myBallActor->VisibilityOn();
1560 if(myEntityMode & eEdges && ( GetCellsLabeled() || // my1DActor shows labels only
1561 ( myControlActor == my1DActor && myControlMode != eNone ))){
1562 my1DActor->VisibilityOn();
1564 if(myEntityMode & eFaces ){
1565 my2DActor->VisibilityOn();
1567 if(myEntityMode & eVolumes ){
1568 my3DActor->VisibilityOn();
1572 if(myNodeActor->GetPointsLabeled()) {
1573 myNodeActor->UpdateLabels();
1574 myNodeActor->VisibilityOn();
1577 my0DActor->UpdateLabels();
1580 myBallActor->UpdateLabels();
1583 my1DActor->UpdateLabels();
1586 my2DActor->UpdateLabels();
1589 my3DActor->UpdateLabels();
1591 #ifndef DISABLE_PLOT2DVIEWER
1593 SMESH::ProcessIn2DViewers(this,SMESH::RemoveFrom2dViewer);
1600 void SMESH_ActorDef::SetEntityMode(unsigned int theMode)
1602 unsigned int anObjectEntities = eAllEntity; // entities present in my object
1604 if(!myVisualObj->GetNbEntities(SMDSAbs_0DElement)) {
1605 anObjectEntities &= ~e0DElements;
1606 theMode &= ~e0DElements;
1609 if(!myVisualObj->GetNbEntities(SMDSAbs_Ball)) {
1610 anObjectEntities &= ~eBallElem;
1611 theMode &= ~eBallElem;
1614 if(!myVisualObj->GetNbEntities(SMDSAbs_Edge)) {
1615 anObjectEntities &= ~eEdges;
1619 if(!myVisualObj->GetNbEntities(SMDSAbs_Face)) {
1620 anObjectEntities &= ~eFaces;
1624 if(!myVisualObj->GetNbEntities(SMDSAbs_Volume)) {
1625 anObjectEntities &= ~eVolumes;
1626 theMode &= ~eVolumes;
1630 if(myVisualObj->GetNbEntities(SMDSAbs_0DElement))
1631 theMode |= e0DElements;
1633 if(myVisualObj->GetNbEntities(SMDSAbs_Ball))
1634 theMode |= eBallElem;
1636 if(myVisualObj->GetNbEntities(SMDSAbs_Edge))
1639 if(myVisualObj->GetNbEntities(SMDSAbs_Face))
1642 if(myVisualObj->GetNbEntities(SMDSAbs_Volume))
1643 theMode |= eVolumes;
1646 myBaseActor->myGeomFilter->SetInside(myEntityMode != anObjectEntities);
1648 if ( anObjectEntities == 0 && myRepresentation != ePoint ) // no elements, show nodes
1650 myRepresentationCache = GetRepresentation();
1651 SetRepresentation( ePoint );
1654 if ( myEntityMode != theMode )
1656 myEntityMode = theMode; // entities to show
1658 // Set cell types to extract
1662 SetVisibility( GetVisibility(), myRepresentationCache != 0 );
1665 void SMESH_ActorDef::SetRepresentation (int theMode)
1667 int aNbEdges = myVisualObj->GetNbEntities(SMDSAbs_Edge);
1668 int aNbFaces = myVisualObj->GetNbEntities(SMDSAbs_Face);
1669 int aNbVolumes = myVisualObj->GetNbEntities(SMDSAbs_Volume);
1670 int aNb0Ds = myVisualObj->GetNbEntities(SMDSAbs_0DElement);
1671 int aNbBalls = myVisualObj->GetNbEntities(SMDSAbs_Ball);
1673 if ( myRepresentationCache && aNbEdges + aNbFaces + aNbVolumes + aNb0Ds + aNbBalls )
1675 theMode = myRepresentationCache;
1676 if ( theMode == eSurface && aNbFaces + aNbVolumes == 0 )
1679 myRepresentationCache = 0;
1683 myRepresentation = eSurface;
1684 if (!aNbFaces && !aNbVolumes && !aNbBalls && aNbEdges) {
1685 myRepresentation = eEdge;
1686 } else if (!aNbFaces && !aNbVolumes && !aNbEdges && !aNbBalls) {
1687 myRepresentation = ePoint;
1692 if (!aNbFaces && !aNbVolumes && !aNbEdges && !aNb0Ds && !aNbBalls) return;
1695 if (!aNbFaces && !aNbVolumes && !aNb0Ds && !aNbBalls) return;
1698 myRepresentation = theMode;
1701 if (!GetUnstructuredGrid()->GetNumberOfCells())
1702 myRepresentation = ePoint;
1705 if (myRepresentation == ePoint) {
1713 myPickableActor = myBaseActor;
1714 vtkProperty *aProp = NULL, *aBackProp = NULL;
1715 vtkProperty *aPropVN = NULL, *aPropVR = NULL;
1716 SMESH_DeviceActor::EReperesent aReperesent = SMESH_DeviceActor::EReperesent(-1);
1717 SMESH_Actor::EQuadratic2DRepresentation aQuadraticMode = GetQuadratic2DRepresentation();
1718 switch (myRepresentation) {
1720 myPickableActor = myNodeActor;
1721 aQuadraticMode = SMESH_Actor::eLines;
1722 aProp = aBackProp = aPropVN = aPropVR = myNodeProp;
1723 aReperesent = SMESH_DeviceActor::ePoint;
1726 aProp = aBackProp = aPropVN = aPropVR = myEdgeProp;
1727 aReperesent = SMESH_DeviceActor::eInsideframe;
1730 aProp = mySurfaceProp;
1731 aBackProp = myBackSurfaceProp;
1732 aPropVN = myNormalVProp;
1733 aPropVR = myReversedVProp;
1734 aReperesent = SMESH_DeviceActor::eSurface;
1738 if ( myRepresentation != ePoint )
1740 my2DActor->SetProperty(aProp);
1741 my2DActor->SetBackfaceProperty(aBackProp);
1742 my2DActor->SetRepresentation(aReperesent);
1744 if(aQuadraticMode == SMESH_Actor::eLines)
1745 my2DActor->SetQuadraticArcMode(false);
1746 else if(aQuadraticMode == SMESH_Actor::eArcs)
1747 my2DActor->SetQuadraticArcMode(true);
1749 my2DExtActor->SetRepresentation(aReperesent);
1751 my3DActor->SetProperty(aPropVN);
1752 my3DActor->SetBackfaceProperty(aPropVR);
1753 my3DActor->SetRepresentation(aReperesent);
1755 my0DActor->SetRepresentation(aReperesent);
1756 myBallActor->SetRepresentation(aReperesent);
1758 switch ( myControlMode ) {
1760 case eMultiConnection:
1761 aProp = aBackProp = my1DProp;
1762 if ( myRepresentation != ePoint )
1763 aReperesent = SMESH_DeviceActor::eInsideframe;
1765 case eCustomControl:
1766 if ( myControlActor == my1DActor )
1767 aProp = aBackProp = my1DProp;
1768 if ( myRepresentation != ePoint )
1769 aReperesent = SMESH_DeviceActor::eInsideframe;
1774 if(aQuadraticMode == SMESH_Actor::eLines)
1775 my1DActor->SetQuadraticArcMode(false);
1776 else if(aQuadraticMode == SMESH_Actor::eArcs)
1777 my1DActor->SetQuadraticArcMode(true);
1779 my1DActor->SetProperty(aProp);
1780 my1DActor->SetBackfaceProperty(aBackProp);
1781 my1DActor->SetRepresentation(aReperesent);
1783 my1DExtActor->SetRepresentation(aReperesent);
1786 if(myIsPointsVisible)
1787 myPickableActor = myNodeActor;
1789 SetMapper(myPickableActor->GetMapper());
1791 SetVisibility(GetVisibility(),false);
1797 void SMESH_ActorDef::SetPointRepresentation(bool theIsPointsVisible)
1799 if ( myIsPointsVisible == theIsPointsVisible )
1801 myIsPointsVisible = theIsPointsVisible;
1802 SetRepresentation(GetRepresentation());
1805 bool SMESH_ActorDef::GetPointRepresentation()
1807 return myIsPointsVisible || myNodeActor->GetPointsLabeled();
1811 void SMESH_ActorDef::UpdateHighlight()
1813 myHighlitableActor->SetHighlited(false);
1814 myHighlitableActor->SetVisibility(false);
1815 bool anIsVisible = GetVisibility();
1817 switch(myRepresentation){
1818 case SMESH_DeviceActor::eSurface:
1819 case SMESH_DeviceActor::eWireframe:
1821 if(myIsHighlighted) {
1822 myHighlitableActor->SetProperty(myHighlightProp);
1823 }else if(myIsPreselected){
1824 myHighlitableActor->SetProperty(myPreselectProp);
1825 } else if(anIsVisible){
1826 (myRepresentation == eSurface) ?
1827 myHighlitableActor->SetProperty(myOutLineProp) : myHighlitableActor->SetProperty(myEdgeProp);
1829 if(GetUnstructuredGrid()->GetNumberOfCells()) {
1830 myHighlitableActor->SetHighlited(anIsVisible);
1831 myHighlitableActor->GetExtractUnstructuredGrid()->
1832 SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::eCells);
1833 myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
1835 myHighlitableActor->SetVisibility(anIsVisible);
1838 case SMESH_DeviceActor::ePoint:
1840 if(myIsHighlighted) {
1841 myNodeActor->SetProperty(myHighlightProp);
1842 }else if(myIsPreselected) {
1843 myNodeActor->SetProperty(myPreselectProp);
1844 } else if(anIsVisible) {
1845 myNodeActor->SetProperty(myNodeProp);
1847 myNodeActor->SetRepresentation(SMESH_DeviceActor::ePoint);
1848 myNodeActor->GetExtractUnstructuredGrid()->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
1849 myNodeActor->GetProperty()->Modified();
1855 void SMESH_ActorDef::EnableSelection( bool enable )
1857 // selection in the Viewer enabled/disabled
1858 if ( enable && ! myBaseActor->myExtractUnstructuredGrid->GetInput() )
1860 myBaseActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
1861 //myHighlitableActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
1862 myBaseActor->myExtractUnstructuredGrid->Update();
1863 //myHighlitableActor->myExtractUnstructuredGrid->Update();
1865 if ( !enable && myBaseActor->myExtractUnstructuredGrid->GetInput() )
1867 myBaseActor->SetUnstructuredGrid( NULL );
1868 //myHighlitableActor->SetUnstructuredGrid( NULL );
1869 myBaseActor->myExtractUnstructuredGrid->Update();
1870 //myHighlitableActor->myExtractUnstructuredGrid->Update();
1874 void SMESH_ActorDef::highlight(bool theHighlight)
1876 if ( myIsHighlighted == theHighlight )
1878 myIsHighlighted = theHighlight;
1883 void SMESH_ActorDef::SetPreSelected(bool thePreselect)
1885 if ( myIsPreselected == thePreselect )
1887 myIsPreselected = thePreselect;
1893 int SMESH_ActorDef::RenderOpaqueGeometry(vtkViewport *vp)
1895 if (myPickableActor->GetIsOpaque())
1897 vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1905 int SMESH_ActorDef::RenderTranslucentGeometry(vtkViewport *vp)
1907 if (!myPickableActor->GetIsOpaque())
1909 vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1917 void SMESH_ActorDef::Render(vtkRenderer *ren)
1919 vtkMTimeType aTime = myTimeStamp->GetMTime();
1920 vtkMTimeType anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1921 vtkMTimeType aClippingTime = myImplicitBoolean->GetMTime();
1922 if(anObjTime > aTime || aClippingTime > aTime)
1927 void SMESH_ActorDef::Update()
1929 if(MYDEBUG) MESSAGE("SMESH_ActorDef::Update");
1931 myVisualObj->Update();
1933 if(GetControlMode() != eNone) {
1934 unsigned long aTime = myTimeStamp->GetMTime();
1935 unsigned long anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1936 if (anObjTime > aTime)
1937 SetControlMode(GetControlMode(),false);
1941 myNodeActor->UpdateLabels();
1944 my0DActor->UpdateLabels();
1947 myBallActor->UpdateLabels();
1950 my1DActor->UpdateLabels();
1953 my2DActor->UpdateLabels();
1956 my3DActor->UpdateLabels();
1958 if(myIsFacesOriented){
1959 SetFacesOriented(myIsFacesOriented);
1962 // if(myVisualObj->GetEntitiesFlag()) { IPAL53915
1963 // myEntityMode |= myVisualObj->GetEntitiesState();
1966 SetEntityMode(GetEntityMode());
1967 SetVisibility(GetVisibility());
1969 myTimeStamp->Modified();
1974 void SMESH_ActorDef::ReleaseGraphicsResources(vtkWindow *renWin)
1976 SALOME_Actor::ReleaseGraphicsResources(renWin);
1978 myPickableActor->ReleaseGraphicsResources(renWin);
1982 static void GetColor(vtkProperty *theProperty, double& r,double& g,double& b)
1984 double* aColor = theProperty->GetColor();
1991 void SMESH_ActorDef::SetOpacity(double theValue)
1993 mySurfaceProp->SetOpacity(theValue);
1994 myBackSurfaceProp->SetOpacity(theValue);
1995 myNormalVProp->SetOpacity(theValue);
1996 myReversedVProp->SetOpacity(theValue);
1997 myEdgeProp->SetOpacity(theValue);
1998 myOutLineProp->SetOpacity(theValue);
1999 myNodeProp->SetOpacity(theValue);
2001 my1DProp->SetOpacity(theValue);
2002 my0DProp->SetOpacity(theValue);
2003 myBallProp->SetOpacity(theValue);
2007 double SMESH_ActorDef::GetOpacity()
2009 return mySurfaceProp->GetOpacity();
2013 void SMESH_ActorDef::SetSufaceColor(double r,double g,double b, int delta)
2015 mySurfaceProp->SetColor(r,g,b);
2016 my2DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
2017 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2018 if( aGroupObj->GetElementType() == SMDSAbs_Face )
2019 myNameActor->SetBackgroundColor(r,g,b);
2021 myDeltaBrightness = delta;
2022 QColor bfc = Qtx::mainColorToSecondary(QColor(int(r*255),int(g*255),int(b*255)), delta);
2023 myBackSurfaceProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
2027 void SMESH_ActorDef::GetSufaceColor(double& r,double& g,double& b, int& delta)
2029 ::GetColor(mySurfaceProp,r,g,b);
2030 delta = myDeltaBrightness;
2033 void SMESH_ActorDef::SetVolumeColor(double r,double g,double b, int delta)
2035 myNormalVProp->SetColor(r,g,b);
2036 my3DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
2037 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2038 if( aGroupObj->GetElementType() == SMDSAbs_Volume )
2039 myNameActor->SetBackgroundColor(r,g,b);
2041 myDeltaVBrightness = delta;
2042 QColor bfc = Qtx::mainColorToSecondary(QColor(int(r*255),int(g*255),int(b*255)), delta);
2043 myReversedVProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
2047 void SMESH_ActorDef::GetVolumeColor(double& r,double& g,double& b, int& delta)
2049 ::GetColor(myNormalVProp,r,g,b);
2050 delta = myDeltaVBrightness;
2053 void SMESH_ActorDef::SetEdgeColor(double r,double g,double b)
2055 myEdgeProp->SetColor(r,g,b);
2056 my1DProp->SetColor(r,g,b);
2057 my1DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
2058 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2059 if( aGroupObj->GetElementType() == SMDSAbs_Edge )
2060 myNameActor->SetBackgroundColor(r,g,b);
2064 void SMESH_ActorDef::GetEdgeColor(double& r,double& g,double& b)
2066 ::GetColor(myEdgeProp,r,g,b);
2069 void SMESH_ActorDef::SetOutlineColor(double r,double g,double b)
2071 myOutLineProp->SetColor(r,g,b);
2075 void SMESH_ActorDef::GetOutlineColor(double& r,double& g,double& b)
2077 ::GetColor(myOutLineProp,r,g,b);
2081 void SMESH_ActorDef::SetNodeColor(double r,double g,double b)
2083 myNodeProp->SetColor(r,g,b);
2084 myNodeExtProp->SetColor(1.0-r,1.0-g,1.0-b);
2085 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2086 if( aGroupObj->GetElementType() == SMDSAbs_Node )
2087 myNameActor->SetBackgroundColor(r,g,b);
2091 void SMESH_ActorDef::GetNodeColor(double& r,double& g,double& b)
2093 ::GetColor(myNodeProp,r,g,b);
2096 void SMESH_ActorDef::Set0DColor(double r,double g,double b)
2098 my0DProp->SetColor(r,g,b);
2099 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2100 if( aGroupObj->GetElementType() == SMDSAbs_0DElement )
2101 myNameActor->SetBackgroundColor(r,g,b);
2105 void SMESH_ActorDef::Get0DColor(double& r,double& g,double& b)
2107 ::GetColor(my0DProp,r,g,b);
2110 void SMESH_ActorDef::SetBallColor(double r,double g,double b)
2112 myBallProp->SetColor(r,g,b);
2113 if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2114 if( aGroupObj->GetElementType() == SMDSAbs_Ball )
2115 myNameActor->SetBackgroundColor(r,g,b);
2119 void SMESH_ActorDef::GetBallColor(double& r,double& g,double& b)
2121 ::GetColor(myBallProp,r,g,b);
2124 void SMESH_ActorDef::UpdateSelectionProps()
2126 QColor selectionColor = SMESH_ActorProps::props()->selectionColor();
2127 QColor highlightColor = SMESH_ActorProps::props()->highlightColor();
2128 int selectionIncrement = SMESH_ActorProps::props()->selectionIncrement();
2129 double width = GetLineWidth();
2130 myHighlightProp->SetColor(selectionColor.redF(), selectionColor.greenF(), selectionColor.blueF());
2131 myHighlightProp->SetLineWidth(width + selectionIncrement);
2132 myPreselectProp->SetColor(highlightColor.redF(), highlightColor.greenF(), highlightColor.blueF());
2133 myPreselectProp->SetLineWidth(width + selectionIncrement);
2137 double SMESH_ActorDef::GetLineWidth()
2139 return myEdgeProp->GetLineWidth();
2143 void SMESH_ActorDef::SetLineWidth(double theVal)
2145 int controlsIncrement = SMESH_ActorProps::props()->controlsIncrement();
2146 int selectionIncrement = SMESH_ActorProps::props()->selectionIncrement();
2148 myEdgeProp->SetLineWidth(theVal);
2150 my1DProp->SetLineWidth(theVal + controlsIncrement);
2151 my1DExtProp->SetLineWidth(theVal + controlsIncrement);
2152 my2DExtProp->SetLineWidth(theVal + controlsIncrement);
2153 my3DExtProp->SetLineWidth(theVal + controlsIncrement);
2154 myHighlightProp->SetLineWidth(theVal + selectionIncrement);
2155 myPreselectProp->SetLineWidth(theVal + selectionIncrement);
2159 double SMESH_ActorDef::GetOutlineWidth()
2161 return myOutLineProp->GetLineWidth();
2164 void SMESH_ActorDef::SetOutlineWidth(double theVal)
2166 myOutLineProp->SetLineWidth(theVal);
2170 void SMESH_ActorDef::Set0DSize(double theVal)
2172 my0DProp->SetPointSize(theVal);
2173 myHighlightProp->SetPointSize(theVal);
2174 myPreselectProp->SetPointSize(theVal);
2176 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2177 aCustom->Set0DSize(theVal);
2179 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2180 aCustom->Set0DSize(theVal);
2186 double SMESH_ActorDef::Get0DSize()
2188 return my0DProp->GetPointSize();
2191 void SMESH_ActorDef::SetBallSize(double theVal)
2193 myBallProp->SetPointSize(theVal);
2195 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2196 aCustom->SetBallSize(theVal);
2198 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2199 aCustom->SetBallSize(theVal);
2205 double SMESH_ActorDef::GetBallSize()
2207 return myBallProp->GetPointSize();
2210 double SMESH_ActorDef::GetBallScale()
2212 return myBallActor->GetBallScale();
2215 void SMESH_ActorDef::SetBallScale( double theVal )
2217 myBallActor->SetBallScale( theVal );
2218 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2219 aCustom->SetBallScale(theVal);
2221 if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2222 aCustom->SetBallScale(theVal);
2228 int SMESH_ActorDef::GetObjDimension( const int theObjId )
2230 return myVisualObj->GetElemDimension( theObjId );
2233 bool SMESH_ActorDef::IsImplicitFunctionUsed() const
2235 return myBaseActor->IsImplicitFunctionUsed();
2238 void SMESH_ActorDef::SetImplicitFunctionUsed(bool theIsImplicitFunctionUsed)
2240 myNodeActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2241 myBaseActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2243 myHighlitableActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2245 myNodeExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2247 my0DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2248 myBallActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2249 //my0DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2251 my1DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2252 my1DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2254 my2DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2255 my2DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2256 my3DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2257 my3DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2260 vtkIdType SMESH_ActorDef::AddClippingPlane(vtkPlane* thePlane)
2263 myImplicitBoolean->GetFunction()->AddItem(thePlane);
2264 myCippingPlaneCont.push_back(thePlane);
2265 if(!IsImplicitFunctionUsed())
2266 SetImplicitFunctionUsed(true);
2267 myNodeActor->UpdateLabels();
2269 return myCippingPlaneCont.size();
2272 void SMESH_ActorDef::AddOpenGLClippingPlane(vtkPlane* thePlane)
2275 myPlaneCollection->AddItem( thePlane );
2278 void SMESH_ActorDef::SetOpenGLClippingPlane()
2280 // before use this method you must add clipping planes using method
2281 // SMESH_ActorDef::AddOpenGLClippingPlane(vtkPlane* thePlane)
2282 if( !myPlaneCollection->GetNumberOfItems() )
2285 // It is necessary to set plane collection for each mapper of actor
2286 // and update current inputs of mapper
2287 myNodeActor->SetPlaneCollection( myPlaneCollection );
2288 myNodeActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2290 myBaseActor->SetPlaneCollection( myPlaneCollection );
2291 myBaseActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2293 myHighlitableActor->SetPlaneCollection( myPlaneCollection );
2294 myHighlitableActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2296 if ( !mySelector || !mySelector->IsSelectionEnabled() )
2298 myBaseActor->SetUnstructuredGrid( NULL );
2299 //myHighlitableActor->SetUnstructuredGrid( NULL );
2301 my1DActor->SetPlaneCollection( myPlaneCollection );
2302 my1DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2304 my2DActor->SetPlaneCollection( myPlaneCollection );
2305 my2DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2307 myNodeExtActor->SetPlaneCollection( myPlaneCollection );
2308 myNodeExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2310 my0DActor->SetPlaneCollection( myPlaneCollection );
2311 my0DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2313 myBallActor->SetPlaneCollection( myPlaneCollection );
2314 myBallActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2316 my1DExtActor->SetPlaneCollection( myPlaneCollection );
2317 my1DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2319 my2DExtActor->SetPlaneCollection( myPlaneCollection );
2320 my2DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2322 my3DActor->SetPlaneCollection( myPlaneCollection );
2323 my3DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2325 my3DExtActor->SetPlaneCollection( myPlaneCollection );
2326 my3DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2334 void SMESH_ActorDef::RemoveAllClippingPlanes()
2336 myPlaneCollection->RemoveAllItems();
2337 myImplicitBoolean->GetFunction()->RemoveAllItems();
2338 myImplicitBoolean->GetFunction()->Modified(); // VTK bug
2339 myCippingPlaneCont.clear();
2340 SetImplicitFunctionUsed(false);
2341 myNodeActor->UpdateLabels();
2344 vtkIdType SMESH_ActorDef::GetNumberOfClippingPlanes()
2346 return myCippingPlaneCont.size();
2349 vtkPlane* SMESH_ActorDef::GetClippingPlane(vtkIdType theID)
2351 if ( theID >= (vtkIdType)myCippingPlaneCont.size() )
2353 return myCippingPlaneCont[theID].Get();
2356 void SMESH_ActorDef::UpdateScalarBar()
2358 SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
2362 vtkTextProperty* aScalarBarTitleProp = vtkTextProperty::New();
2364 QColor aTColor = mgr->colorValue( "SMESH", "scalar_bar_title_color", QColor( 255, 255, 255 ) );
2365 aScalarBarTitleProp->SetColor( aTColor.red()/255., aTColor.green()/255., aTColor.blue()/255. );
2367 aScalarBarTitleProp->SetFontFamilyToArial();
2369 if ( mgr->hasValue( "SMESH", "scalar_bar_title_font" ) )
2371 QFont f = mgr->fontValue( "SMESH", "scalar_bar_title_font" );
2372 if ( f.family() == "Arial" )
2373 aScalarBarTitleProp->SetFontFamilyToArial();
2374 else if ( f.family() == "Courier" )
2375 aScalarBarTitleProp->SetFontFamilyToCourier();
2376 else if ( f.family() == "Times" )
2377 aScalarBarTitleProp->SetFontFamilyToTimes();
2380 aScalarBarTitleProp->BoldOn();
2382 aScalarBarTitleProp->BoldOff();
2385 aScalarBarTitleProp->ItalicOn();
2387 aScalarBarTitleProp->ItalicOff();
2390 aScalarBarTitleProp->ShadowOn();
2392 aScalarBarTitleProp->ShadowOff();
2395 myScalarBarActor->SetTitleTextProperty( aScalarBarTitleProp );
2396 aScalarBarTitleProp->Delete();
2398 vtkTextProperty* aScalarBarLabelProp = vtkTextProperty::New();
2400 aTColor = mgr->colorValue( "SMESH", "scalar_bar_label_color", QColor( 255, 255, 255 ) );
2401 aScalarBarLabelProp->SetColor( aTColor.red()/255., aTColor.green()/255., aTColor.blue()/255. );
2403 aScalarBarLabelProp->SetFontFamilyToArial();
2404 if( mgr->hasValue( "SMESH", "scalar_bar_label_font" ) )
2406 QFont f = mgr->fontValue( "SMESH", "scalar_bar_label_font" );
2407 if( f.family() == "Arial" )
2408 aScalarBarLabelProp->SetFontFamilyToArial();
2409 else if( f.family() == "Courier" )
2410 aScalarBarLabelProp->SetFontFamilyToCourier();
2411 else if( f.family() == "Times" )
2412 aScalarBarLabelProp->SetFontFamilyToTimes();
2415 aScalarBarLabelProp->BoldOn();
2417 aScalarBarLabelProp->BoldOff();
2420 aScalarBarLabelProp->ItalicOn();
2422 aScalarBarLabelProp->ItalicOff();
2425 aScalarBarLabelProp->ShadowOn();
2427 aScalarBarLabelProp->ShadowOff();
2430 myScalarBarActor->SetLabelTextProperty( aScalarBarLabelProp );
2431 aScalarBarLabelProp->Delete();
2433 bool horiz = ( mgr->integerValue( "SMESH", "scalar_bar_orientation" ) == 1 );
2434 QString name = QString( "scalar_bar_%1_" ).arg( horiz ? "horizontal" : "vertical" );
2436 myScalarBarActor->SetOrientationToHorizontal();
2438 myScalarBarActor->SetOrientationToVertical();
2441 double aXVal = horiz ? 0.20 : 0.01;
2442 if( mgr->hasValue( "SMESH", name + "x" ) )
2443 aXVal = mgr->doubleValue( "SMESH", name + "x", aXVal );
2445 double aYVal = horiz ? 0.01 : 0.1;
2446 if( mgr->hasValue( "SMESH", name + "y" ) )
2447 aYVal = mgr->doubleValue( "SMESH", name + "y", aYVal );
2448 myScalarBarActor->SetPosition( aXVal, aYVal );
2450 double aWVal = horiz ? 0.60 : 0.10;
2451 if( mgr->hasValue( "SMESH", name + "width" ) )
2452 aWVal = mgr->doubleValue( "SMESH", name + "width", aWVal );
2453 myScalarBarActor->SetWidth( aWVal );
2455 double aHVal = horiz ? 0.12 : 0.80;
2456 if( mgr->hasValue( "SMESH", name + "height" ) )
2457 aHVal = mgr->doubleValue( "SMESH", name + "height", aHVal );
2458 myScalarBarActor->SetHeight( aHVal );
2461 if( mgr->hasValue( "SMESH", "scalar_bar_num_labels" ) )
2462 anIntVal = mgr->integerValue( "SMESH", "scalar_bar_num_labels", anIntVal );
2463 myScalarBarActor->SetNumberOfLabels( anIntVal == 0 ? 5: anIntVal );
2466 if( mgr->hasValue( "SMESH", "scalar_bar_num_colors" ) )
2467 anIntVal = mgr->integerValue( "SMESH", "scalar_bar_num_colors", anIntVal );
2468 myScalarBarActor->SetMaximumNumberOfColors( anIntVal == 0 ? 64 : anIntVal );
2470 bool distributionVisibility = mgr->booleanValue("SMESH","distribution_visibility");
2471 myScalarBarActor->SetDistributionVisibility(distributionVisibility);
2473 int coloringType = mgr->integerValue("SMESH", "distribution_coloring_type", 0);
2474 myScalarBarActor->SetDistributionColoringType(coloringType);
2476 QColor distributionColor = mgr->colorValue("SMESH", "distribution_color",
2477 QColor(255, 255, 255));
2479 rgb[0]= distributionColor.red()/255.;
2480 rgb[1]= distributionColor.green()/255.;
2481 rgb[2]= distributionColor.blue()/255.;
2482 myScalarBarActor->SetDistributionColor(rgb);
2487 void SMESH_ActorDef::UpdateDistribution()
2489 if(SMESH::Controls::NumericalFunctor* fun =
2490 dynamic_cast<SMESH::Controls::NumericalFunctor*>(myFunctor.get()))
2492 int nbIntervals = myScalarBarActor->GetMaximumNumberOfColors();
2493 std::vector<int> nbEvents;
2494 std::vector<double> funValues;
2495 SMESH_VisualObjDef::TEntityList elems;
2496 if ( dynamic_cast<SMESH_SubMeshObj*>(myVisualObj.get()))
2497 dynamic_cast<SMESH_SubMeshObj*>(myVisualObj.get())->GetEntities( fun->GetType(), elems );
2498 std::vector<int> elemIds; elemIds.reserve( elems.size() );
2499 for ( SMESH_VisualObjDef::TEntityList::iterator e = elems.begin(); e != elems.end(); ++e)
2500 elemIds.push_back( (*e)->GetID());
2501 vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
2502 double * range = lookupTable->GetRange();
2503 bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
2504 fun->GetHistogram(nbIntervals, nbEvents, funValues, elemIds, range, isLogarithmic);
2505 myScalarBarActor->SetDistribution(nbEvents);
2509 void SMESH_ActorDef::SetQuadratic2DRepresentation(EQuadratic2DRepresentation theMode)
2512 case SMESH_Actor::eLines :
2513 myHighlitableActor->SetQuadraticArcMode(false);
2514 my2DActor->SetQuadraticArcMode(false);
2515 my1DActor->SetQuadraticArcMode(false);
2517 case SMESH_Actor::eArcs :
2518 myHighlitableActor->SetQuadraticArcMode(true);
2519 if(GetRepresentation() != SMESH_Actor::ePoint) {
2520 my2DActor->SetQuadraticArcMode(true);
2521 my1DActor->SetQuadraticArcMode(true);
2530 SMESH_Actor::EQuadratic2DRepresentation SMESH_ActorDef::GetQuadratic2DRepresentation()
2532 if(myHighlitableActor->GetQuadraticArcMode())
2533 return SMESH_Actor::eArcs;
2535 return SMESH_Actor::eLines;
2538 void SMESH_ActorDef::SetMarkerStd( VTK::MarkerType theMarkerType, VTK::MarkerScale theMarkerScale )
2540 SALOME_Actor::SetMarkerStd( theMarkerType, theMarkerScale );
2541 myNodeActor->SetMarkerStd( theMarkerType, theMarkerScale );
2542 myNodeExtActor->SetMarkerStd( theMarkerType, theMarkerScale );
2545 void SMESH_ActorDef::SetMarkerTexture( int theMarkerId, VTK::MarkerTexture theMarkerTexture )
2547 SALOME_Actor::SetMarkerTexture( theMarkerId, theMarkerTexture );
2548 myNodeActor->SetMarkerTexture( theMarkerId, theMarkerTexture );
2549 myNodeExtActor->SetMarkerTexture( theMarkerId, theMarkerTexture );
2550 myMarkerTexture = theMarkerTexture; // for deferred update of myHighlightActor
2553 void SMESH_ActorDef::UpdateFilter()
2555 unsigned int anObjectEntities = eAllEntity; // entities present in my object
2557 if(!myVisualObj->GetNbEntities(SMDSAbs_0DElement)) {
2558 anObjectEntities &= ~e0DElements;
2561 if(!myVisualObj->GetNbEntities(SMDSAbs_Ball)) {
2562 anObjectEntities &= ~eBallElem;
2565 if(!myVisualObj->GetNbEntities(SMDSAbs_Edge)) {
2566 anObjectEntities &= ~eEdges;
2569 if(!myVisualObj->GetNbEntities(SMDSAbs_Face)) {
2570 anObjectEntities &= ~eFaces;
2573 if(!myVisualObj->GetNbEntities(SMDSAbs_Volume)) {
2574 anObjectEntities &= ~eVolumes;
2577 VTKViewer_ExtractUnstructuredGrid* aFilter = myBaseActor->GetExtractUnstructuredGrid();
2578 VTKViewer_ExtractUnstructuredGrid* aHltFilter = myHighlitableActor->GetExtractUnstructuredGrid();
2579 aFilter->ClearRegisteredCellsWithType();
2580 aHltFilter->ClearRegisteredCellsWithType();
2582 bool isPassAll = ( myEntityMode == anObjectEntities && myEntityMode );
2585 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::ePassAll);
2586 aHltFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::ePassAll);
2590 aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
2591 aHltFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
2592 if (myEntityMode & e0DElements) {
2593 aFilter->RegisterCellsWithType(VTK_VERTEX);
2594 aHltFilter->RegisterCellsWithType(VTK_VERTEX);
2597 if (myEntityMode & eBallElem) {
2598 aFilter->RegisterCellsWithType(VTK_POLY_VERTEX);
2600 if (myEntityMode & eEdges) {
2601 aFilter->RegisterCellsWithType(VTK_LINE);
2602 aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
2603 aHltFilter->RegisterCellsWithType(VTK_LINE);
2604 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
2607 if (myEntityMode & eFaces) {
2608 aFilter->RegisterCellsWithType(VTK_TRIANGLE);
2609 aFilter->RegisterCellsWithType(VTK_QUAD);
2610 aFilter->RegisterCellsWithType(VTK_POLYGON);
2611 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
2612 aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
2613 aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
2614 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
2615 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
2616 aHltFilter->RegisterCellsWithType(VTK_TRIANGLE);
2617 aHltFilter->RegisterCellsWithType(VTK_QUAD);
2618 aHltFilter->RegisterCellsWithType(VTK_POLYGON);
2619 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
2620 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
2621 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
2622 aHltFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
2623 aHltFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
2626 if (myEntityMode & eVolumes) {
2627 aFilter->RegisterCellsWithType(VTK_TETRA);
2628 aFilter->RegisterCellsWithType(VTK_VOXEL);
2629 aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
2630 aFilter->RegisterCellsWithType(VTK_WEDGE);
2631 aFilter->RegisterCellsWithType(VTK_PYRAMID);
2632 aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
2633 aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
2634 aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
2635 aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
2636 aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
2637 aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
2638 aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUADRATIC_WEDGE);
2639 aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
2640 aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
2641 aHltFilter->RegisterCellsWithType(VTK_TETRA);
2642 aHltFilter->RegisterCellsWithType(VTK_VOXEL);
2643 aHltFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
2644 aHltFilter->RegisterCellsWithType(VTK_WEDGE);
2645 aHltFilter->RegisterCellsWithType(VTK_PYRAMID);
2646 aHltFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
2647 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
2648 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
2649 aHltFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
2650 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
2651 aHltFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUADRATIC_WEDGE);
2652 aHltFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
2653 aHltFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
2654 aHltFilter->RegisterCellsWithType(VTK_POLYHEDRON);
2657 if ( GetVisibility() )
2659 if (MYDEBUG) MESSAGE(aFilter->GetOutput()->GetNumberOfCells());
2662 #ifndef DISABLE_PLOT2DVIEWER
2663 SPlot2d_Histogram* SMESH_ActorDef::UpdatePlot2Histogram()
2666 my2dHistogram->clearAllPoints();
2668 if(SMESH::Controls::NumericalFunctor* fun =
2669 dynamic_cast<SMESH::Controls::NumericalFunctor*>(myFunctor.get()))
2672 if(!my2dHistogram) {
2673 my2dHistogram = new SPlot2d_Histogram();
2674 Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(getIO()->getEntry(),"SMESH",getName());
2675 my2dHistogram->setIO(anIO);
2678 int nbIntervals = myScalarBarActor->GetMaximumNumberOfColors();
2679 std::vector<int> nbEvents;
2680 std::vector<double> funValues;
2681 SMESH_VisualObjDef::TEntityList elems;
2682 if ( dynamic_cast<SMESH_SubMeshObj*>(myVisualObj.get()))
2683 dynamic_cast<SMESH_SubMeshObj*>(myVisualObj.get())->GetEntities( fun->GetType(), elems );
2684 std::vector<int> elemIds;
2686 for ( SMESH_VisualObjDef::TEntityList::iterator e = elems.begin(); e != elems.end(); ++e)
2687 elemIds.push_back( (*e)->GetID());
2689 vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
2690 double * range = lookupTable->GetRange();
2691 bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
2692 fun->GetHistogram(nbIntervals, nbEvents, funValues, elemIds, range, isLogarithmic);
2694 for ( size_t i = 0; i < std::min( nbEvents.size(), funValues.size() -1 ); i++ )
2695 my2dHistogram->addPoint(funValues[i] + (funValues[i+1] - funValues[i])/2.0, static_cast<double>(nbEvents[i]));
2697 if(funValues.size() >= 2)
2698 my2dHistogram->setWidth((funValues[1] - funValues[0]) * 0.8) ;
2702 //Color of the histogram
2703 if(myScalarBarActor->GetDistributionColoringType() == SMESH_MULTICOLOR_TYPE)
2704 my2dHistogram->setAutoAssign(true);
2707 myScalarBarActor->GetDistributionColor(rgb);
2708 QColor aColor = QColor( (int)( rgb[0]*255 ), (int)( rgb[1]*255 ), (int)( rgb[2]*255 ) );
2709 my2dHistogram->setColor(aColor);
2713 return my2dHistogram;