Salome HOME
f29273b4c9ed2b3ae031d8041e37f3e3344c58a1
[modules/smesh.git] / src / OBJECT / SMESH_Actor.cxx
1 //  SMESH OBJECT : interactive object for SMESH visualization
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
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. 
10 // 
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. 
15 // 
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 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_Actor.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29
30 #include "SMESH_ActorDef.h"
31 #include "SMESH_ActorUtils.h"
32 #include "SMESH_DeviceActor.h"
33 #include "SMESH_ControlsDef.hxx"
34 #include "SALOME_ExtractUnstructuredGrid.h"
35
36 #include "QAD_Config.h"
37 #include <qstringlist.h>
38
39 #include <vtkTimeStamp.h>
40 #include <vtkObjectFactory.h>
41 #include <vtkShrinkPolyData.h>
42 #include <vtkMergeFilter.h>
43
44 #include <vtkMatrix4x4.h>
45 #include <vtkUnstructuredGrid.h>
46 #include <vtkPointData.h>
47 #include <vtkCellData.h>
48
49 #include <vtkMapper.h>
50 #include <vtkRenderer.h>
51
52 #include <vtkCell.h>
53 #include <vtkIdList.h>
54 #include <vtkIntArray.h>
55
56 #include <vtkActor2D.h>
57 #include <vtkProperty2D.h>
58 #include <vtkPolyData.h>
59 #include <vtkMaskPoints.h>
60 #include <vtkCellCenters.h>
61 #include <vtkTextProperty.h>
62 #include <vtkLabeledDataMapper.h>
63 #include <vtkSelectVisiblePoints.h>
64
65 #include <vtkScalarBarActor.h>
66 #include <vtkLookupTable.h>
67
68 #include <vtkMath.h>
69 #include <vtkPlane.h>
70 #include <vtkImplicitBoolean.h>
71
72 #include "utilities.h"
73
74 #ifdef _DEBUG_
75 static int MYDEBUG = 0;
76 #else
77 static int MYDEBUG = 0;
78 #endif
79
80 static int aLineWidthInc = 2;
81 static int aPointSizeInc = 2;
82
83
84 SMESH_ActorDef* SMESH_ActorDef::New(){
85   return new SMESH_ActorDef();
86 }
87
88
89 SMESH_Actor* SMESH_Actor::New(TVisualObjPtr theVisualObj, 
90                               const char* theEntry, 
91                               const char* theName,
92                               int theIsClear)
93 {
94   SMESH_ActorDef* anActor = SMESH_ActorDef::New();
95   if(!anActor->Init(theVisualObj,theEntry,theName,theIsClear)){
96     anActor->Delete();
97     anActor = NULL;
98   }
99   return anActor;
100 }
101
102
103 SMESH_ActorDef::SMESH_ActorDef(){
104   if(MYDEBUG) MESSAGE("SMESH_ActorDef");
105
106   myTimeStamp = vtkTimeStamp::New();
107
108   myIsPointsVisible = false;
109
110   myIsShrinkable = false;
111   myIsShrunk = false;
112
113   myControlsPrecision = (long)SMESH::GetFloat( "SMESH:ControlsPrecision", -1 );
114
115   float aPointSize = SMESH::GetFloat("SMESH:SettingsNodesSize",3);
116   float aLineWidth = SMESH::GetFloat("SMESH:SettingsWidth",1);
117
118   vtkMatrix4x4 *aMatrix = vtkMatrix4x4::New();
119   SALOME_ExtractUnstructuredGrid* aFilter = NULL;
120
121   //Definition 2D and 3D divices of the actor
122   //-----------------------------------------
123   float anRGB[3] = {1,1,1};
124   mySurfaceProp = vtkProperty::New();
125   anRGB[0] = SMESH::GetFloat("SMESH:SettingsFillColorRed", 0)/255.;
126   anRGB[1] = SMESH::GetFloat("SMESH:SettingsFillColorGreen", 170)/255.;
127   anRGB[2] = SMESH::GetFloat("SMESH:SettingsFillColorBlue", 255)/255.;
128   mySurfaceProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
129
130   myBackSurfaceProp = vtkProperty::New();
131   anRGB[0] = SMESH::GetFloat("SMESH:SettingsBackFaceColorRed", 0)/255.;
132   anRGB[1] = SMESH::GetFloat("SMESH:SettingsBackFaceColorGreen", 0)/255.;
133   anRGB[2] = SMESH::GetFloat("SMESH:SettingsBackFaceColorBlue", 255)/255.;
134   myBackSurfaceProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
135
136   my2DActor = SMESH_DeviceActor::New();
137   my2DActor->SetUserMatrix(aMatrix);
138   my2DActor->SetStoreMapping(true);
139   my2DActor->PickableOff();
140   my2DActor->SetProperty(mySurfaceProp);
141   my2DActor->SetBackfaceProperty(myBackSurfaceProp);
142   my2DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
143   aFilter = my2DActor->GetExtractUnstructuredGrid();
144   aFilter->SetModeOfChanging(SALOME_ExtractUnstructuredGrid::eAdding);
145   aFilter->RegisterCellsWithType(VTK_TRIANGLE);
146   aFilter->RegisterCellsWithType(VTK_POLYGON);
147   aFilter->RegisterCellsWithType(VTK_QUAD);
148
149   my3DActor = SMESH_DeviceActor::New();
150   my3DActor->SetUserMatrix(aMatrix);
151   my3DActor->SetStoreMapping(true);
152   my3DActor->PickableOff();
153   my3DActor->SetProperty(mySurfaceProp);
154   my3DActor->SetBackfaceProperty(myBackSurfaceProp);
155   my3DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
156   aFilter = my3DActor->GetExtractUnstructuredGrid();
157   aFilter->SetModeOfChanging(SALOME_ExtractUnstructuredGrid::eAdding);
158   aFilter->RegisterCellsWithType(VTK_TETRA);
159   aFilter->RegisterCellsWithType(VTK_VOXEL);
160   aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
161   aFilter->RegisterCellsWithType(VTK_WEDGE);
162   aFilter->RegisterCellsWithType(VTK_PYRAMID);
163
164
165   //Definition 1D divice of the actor
166   //---------------------------------
167   myEdgeProp = vtkProperty::New();
168   myEdgeProp->SetAmbient(1.0);
169   myEdgeProp->SetDiffuse(0.0);
170   myEdgeProp->SetSpecular(0.0);
171   anRGB[0] = SMESH::GetFloat("SMESH:SettingsOutlineColorRed", 0)/255.;
172   anRGB[1] = SMESH::GetFloat("SMESH:SettingsOutlineColorGreen", 170)/255.;
173   anRGB[2] = SMESH::GetFloat("SMESH:SettingsOutlineColorBlue", 255)/255.;
174   myEdgeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
175   myEdgeProp->SetLineWidth(aLineWidth);
176
177   my1DActor = SMESH_DeviceActor::New();
178   my1DActor->SetUserMatrix(aMatrix);
179   my1DActor->SetStoreMapping(true);
180   my1DActor->PickableOff();
181   my1DActor->SetHighlited(true);
182   my1DActor->SetProperty(myEdgeProp);
183   my1DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
184   aFilter = my1DActor->GetExtractUnstructuredGrid();
185   aFilter->SetModeOfChanging(SALOME_ExtractUnstructuredGrid::eAdding);
186   aFilter->RegisterCellsWithType(VTK_LINE);
187
188   my1DProp = vtkProperty::New();
189   my1DProp->DeepCopy(myEdgeProp);
190   my1DProp->SetLineWidth(aLineWidth + aLineWidthInc);
191   my1DProp->SetPointSize(aPointSize);
192
193   my1DExtProp = vtkProperty::New();
194   my1DExtProp->DeepCopy(myEdgeProp);
195   anRGB[0] = 1 - anRGB[0];
196   anRGB[1] = 1 - anRGB[1];
197   anRGB[2] = 1 - anRGB[2];
198   my1DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
199   my1DExtProp->SetLineWidth(aLineWidth + aLineWidthInc);
200   my1DExtProp->SetPointSize(aPointSize + aPointSizeInc);
201
202   my1DExtActor = SMESH_DeviceActor::New();
203   my1DExtActor->SetUserMatrix(aMatrix);
204   my1DExtActor->SetStoreMapping(true);
205   my1DExtActor->PickableOff();
206   my1DExtActor->SetHighlited(true);
207   my1DExtActor->SetVisibility(false);
208   my1DExtActor->SetProperty(my1DExtProp);
209   my1DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
210   aFilter = my1DExtActor->GetExtractUnstructuredGrid();
211   aFilter->SetModeOfChanging(SALOME_ExtractUnstructuredGrid::eAdding);
212   aFilter->RegisterCellsWithType(VTK_LINE);
213
214
215   //Definition 0D divice of the actor
216   //---------------------------------
217   myNodeProp = vtkProperty::New();
218   anRGB[0] = SMESH::GetFloat("SMESH:SettingsNodeColorRed",255)/255.;
219   anRGB[1] = SMESH::GetFloat("SMESH:SettingsNodeColorGreen",0)/255.;
220   anRGB[2] = SMESH::GetFloat("SMESH:SettingsNodeColorBlue",0)/255.;
221   myNodeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
222   myNodeProp->SetPointSize(aPointSize);
223
224   myNodeActor = SMESH_DeviceActor::New();
225   myNodeActor->SetUserMatrix(aMatrix);
226   myNodeActor->SetStoreMapping(true);
227   myNodeActor->PickableOff();
228   myNodeActor->SetVisibility(false);
229   myNodeActor->SetProperty(myNodeProp);
230   myNodeActor->SetRepresentation(SMESH_DeviceActor::ePoint);
231   aFilter = myNodeActor->GetExtractUnstructuredGrid();
232   aFilter->SetModeOfExtraction(SALOME_ExtractUnstructuredGrid::ePoints);
233
234
235   //Definition of Pickable and Highlitable engines
236   //----------------------------------------------
237
238   myBaseActor = SMESH_DeviceActor::New();
239   myBaseActor->SetUserMatrix(aMatrix);
240   myBaseActor->SetStoreMapping(true);
241   myBaseActor->GetProperty()->SetOpacity(0.0);
242
243   myPickableActor = myBaseActor;
244
245   myHighlightProp = vtkProperty::New();
246   myHighlightProp->SetAmbient(1.0);
247   myHighlightProp->SetDiffuse(0.0);
248   myHighlightProp->SetSpecular(0.0);
249   anRGB[0] = SMESH::GetFloat("SMESH:SettingsSelectColorRed", 255)/255.;   // 1;
250   anRGB[1] = SMESH::GetFloat("SMESH:SettingsSelectColorGreen", 255)/255.; // 1;
251   anRGB[2] = SMESH::GetFloat("SMESH:SettingsSelectColorBlue", 255)/255.;  // 1;
252   myHighlightProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
253   myHighlightProp->SetPointSize(aPointSize);
254   myHighlightProp->SetRepresentation(1);
255  
256   myPreselectProp = vtkProperty::New();
257   myPreselectProp->SetAmbient(1.0);
258   myPreselectProp->SetDiffuse(0.0);
259   myPreselectProp->SetSpecular(0.0);
260   anRGB[0] = SMESH::GetFloat("SMESH:SettingsPreSelectColorRed", 0)/255.;     // 0;
261   anRGB[1] = SMESH::GetFloat("SMESH:SettingsPreSelectColorGreen", 255)/255.; // 1;
262   anRGB[2] = SMESH::GetFloat("SMESH:SettingsPreSelectColorBlue", 255)/255.;  // 1;
263   myPreselectProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
264   myPreselectProp->SetPointSize(aPointSize);
265   myPreselectProp->SetRepresentation(1);
266
267   myHighlitableActor = SMESH_DeviceActor::New();
268   myHighlitableActor->SetUserMatrix(aMatrix);
269   myHighlitableActor->SetStoreMapping(false);
270   myHighlitableActor->PickableOff();
271   myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
272
273   myNodeHighlitableActor = SMESH_DeviceActor::New();
274   myNodeHighlitableActor->SetUserMatrix(aMatrix);
275   myNodeHighlitableActor->SetStoreMapping(false);
276   myNodeHighlitableActor->PickableOff();
277   myNodeHighlitableActor->SetRepresentation(SMESH_DeviceActor::ePoint);
278   aFilter = myNodeHighlitableActor->GetExtractUnstructuredGrid();
279   aFilter->SetModeOfExtraction(SALOME_ExtractUnstructuredGrid::ePoints);
280
281
282   SetShrinkFactor(SMESH::GetFloat("SMESH:SettingsShrinkCoeff", 75)/100.);
283
284   myName = "";
285   myIO = NULL;
286
287   myControlMode = eNone;
288   myControlActor = my2DActor;
289
290   //Definition of myScalarBarActor
291   //------------------------------
292   myLookupTable = vtkLookupTable::New();
293   //Fix for Bug PAL5195 - SMESH764: 
294   //Controls - Aspect Ratio: incorrect colors of the best and worst values
295   myLookupTable->SetHueRange(0.667,0.0);
296
297   myScalarBarActor = vtkScalarBarActor::New();
298   myScalarBarActor->SetVisibility(false);
299   myScalarBarActor->SetLookupTable(myLookupTable);
300
301   vtkTextProperty* aScalarBarTitleProp = vtkTextProperty::New();
302
303   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarTitleColor" ) ) {
304     QStringList aTColor = QStringList::split(  ":", QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleColor" ), false );
305     aScalarBarTitleProp->SetColor( ( aTColor.count() > 0 ? aTColor[0].toInt()/255. : 1.0 ),
306                                    ( aTColor.count() > 1 ? aTColor[1].toInt()/255. : 1.0 ), 
307                                    ( aTColor.count() > 2 ? aTColor[2].toInt()/255. : 1.0 ) );
308   }
309   else
310     aScalarBarTitleProp->SetColor( 1.0, 1.0, 1.0 );
311
312   aScalarBarTitleProp->SetFontFamilyToArial();
313   if( QAD_CONFIG->hasSetting( "SMESH:ScalarBarTitleFont" ) ){
314     if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleFont" ) == "Arial" )
315       aScalarBarTitleProp->SetFontFamilyToArial();
316     else if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleFont" ) == "Courier" )
317       aScalarBarTitleProp->SetFontFamilyToCourier();
318     else if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleFont" ) == "Times" )
319       aScalarBarTitleProp->SetFontFamilyToTimes();
320   }
321
322   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleBold" ) == "true" )
323     aScalarBarTitleProp->BoldOn();
324   else
325     aScalarBarTitleProp->BoldOff();
326
327   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleItalic" ) == "true" )
328     aScalarBarTitleProp->ItalicOn();
329   else
330     aScalarBarTitleProp->ItalicOff();
331
332   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarTitleShadow" ) == "true" )
333     aScalarBarTitleProp->ShadowOn();
334   else
335     aScalarBarTitleProp->ShadowOff();
336
337   myScalarBarActor->SetTitleTextProperty( aScalarBarTitleProp );
338   aScalarBarTitleProp->Delete();
339
340   vtkTextProperty* aScalarBarLabelProp = vtkTextProperty::New();
341
342   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarLabelColor" ) ) {
343     QStringList aTColor = QStringList::split(  ":", QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelColor" ), false );
344     aScalarBarLabelProp->SetColor( ( aTColor.count() > 0 ? aTColor[0].toInt()/255. : 1.0 ),
345                                    ( aTColor.count() > 1 ? aTColor[1].toInt()/255. : 1.0 ), 
346                                    ( aTColor.count() > 2 ? aTColor[2].toInt()/255. : 1.0 ) );
347   }
348   else
349     aScalarBarLabelProp->SetColor( 1.0, 1.0, 1.0 );
350
351   aScalarBarLabelProp->SetFontFamilyToArial();
352   if( QAD_CONFIG->hasSetting( "SMESH:ScalarBarLabelFont" ) ){
353     if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelFont" ) == "Arial" )
354       aScalarBarLabelProp->SetFontFamilyToArial();
355     else if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelFont" ) == "Courier" )
356       aScalarBarLabelProp->SetFontFamilyToCourier();
357     else if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelFont" ) == "Times" )
358       aScalarBarLabelProp->SetFontFamilyToTimes();
359   }
360
361   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelBold" ) == "true" )
362     aScalarBarLabelProp->BoldOn();
363   else
364     aScalarBarLabelProp->BoldOff();
365
366   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelItalic" ) == "true" )
367     aScalarBarLabelProp->ItalicOn();
368   else
369     aScalarBarLabelProp->ItalicOff();
370
371   if ( QAD_CONFIG->getSetting( "SMESH:ScalarBarLabelShadow" ) == "true" )
372     aScalarBarLabelProp->ShadowOn();
373   else
374     aScalarBarLabelProp->ShadowOff();
375
376   myScalarBarActor->SetLabelTextProperty( aScalarBarLabelProp );
377   aScalarBarLabelProp->Delete();
378
379   if ( QAD_CONFIG->getSetting("SMESH:ScalarBarOrientation") == "Horizontal" )
380     myScalarBarActor->SetOrientationToHorizontal();
381   else
382     myScalarBarActor->SetOrientationToVertical();
383
384   float aXVal = QAD_CONFIG->getSetting("SMESH:ScalarBarOrientation") == "Horizontal" ? 0.20 : 0.01;
385   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarXPosition" ) )
386     aXVal = QAD_CONFIG->getSetting( "SMESH:ScalarBarXPosition" ).toFloat();
387   float aYVal = QAD_CONFIG->getSetting("SMESH:ScalarBarOrientation") == "Horizontal" ? 0.01 : 0.1;
388   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarYPosition" ) )
389     aYVal = QAD_CONFIG->getSetting( "SMESH:ScalarBarYPosition" ).toFloat();
390   myScalarBarActor->SetPosition( aXVal, aYVal );
391
392   float aWVal = QAD_CONFIG->getSetting("SMESH:ScalarBarOrientation") == "Horizontal" ? 0.60 : 0.10;
393   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarWidth" ) )
394     aWVal = QAD_CONFIG->getSetting( "SMESH:ScalarBarWidth" ).toFloat();
395   myScalarBarActor->SetWidth( aWVal );
396
397   float aHVal = QAD_CONFIG->getSetting("SMESH:ScalarBarOrientation") == "Horizontal" ? 0.12 : 0.80;
398   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarHeight" ) )
399     aHVal = QAD_CONFIG->getSetting( "SMESH:ScalarBarHeight" ).toFloat();
400   myScalarBarActor->SetHeight( aHVal );
401
402   int anIntVal = 5;
403   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarNbOfLabels" ) )
404     anIntVal = QAD_CONFIG->getSetting("SMESH:ScalarBarNbOfLabels").toInt();
405   myScalarBarActor->SetNumberOfLabels(anIntVal == 0? 5: anIntVal);
406
407   anIntVal = 64;
408   if ( QAD_CONFIG->hasSetting( "SMESH:ScalarBarNbOfColors" ) )
409     anIntVal = QAD_CONFIG->getSetting("SMESH:ScalarBarNbOfColors").toInt();
410   myScalarBarActor->SetMaximumNumberOfColors(anIntVal == 0? 64: anIntVal);
411
412
413   //Definition of points numbering pipeline
414   //---------------------------------------
415   myPointsNumDataSet = vtkUnstructuredGrid::New();
416
417   myPtsMaskPoints = vtkMaskPoints::New();
418   myPtsMaskPoints->SetInput(myPointsNumDataSet);
419   myPtsMaskPoints->SetOnRatio(1);
420     
421   myPtsSelectVisiblePoints = vtkSelectVisiblePoints::New();
422   myPtsSelectVisiblePoints->SetInput(myPtsMaskPoints->GetOutput());
423   myPtsSelectVisiblePoints->SelectInvisibleOff();
424   myPtsSelectVisiblePoints->SetTolerance(0.1);
425     
426   myPtsLabeledDataMapper = vtkLabeledDataMapper::New();
427   myPtsLabeledDataMapper->SetInput(myPtsSelectVisiblePoints->GetOutput());
428   myPtsLabeledDataMapper->SetLabelFormat("%g");
429   myPtsLabeledDataMapper->SetLabelModeToLabelScalars();
430     
431   vtkTextProperty* aPtsTextProp = vtkTextProperty::New();
432   aPtsTextProp->SetFontFamilyToTimes();
433   static int aPointsFontSize = 10;
434   aPtsTextProp->SetFontSize(aPointsFontSize);
435   aPtsTextProp->SetBold(1);
436   aPtsTextProp->SetItalic(0);
437   aPtsTextProp->SetShadow(0);
438   myPtsLabeledDataMapper->SetLabelTextProperty(aPtsTextProp);
439   aPtsTextProp->Delete();
440   
441   myEntityMode = eAllEntity;
442
443   myIsPointsLabeled = false;
444
445   myPointLabels = vtkActor2D::New();
446   myPointLabels->SetMapper(myPtsLabeledDataMapper);
447   myPointLabels->GetProperty()->SetColor(1,1,1);
448   myPointLabels->SetVisibility(myIsPointsLabeled);
449
450
451   //Definition of cells numbering pipeline
452   //---------------------------------------
453   myCellsNumDataSet = vtkUnstructuredGrid::New();
454
455   myCellCenters = vtkCellCenters::New();
456   myCellCenters->SetInput(myCellsNumDataSet);
457
458   myClsMaskPoints = vtkMaskPoints::New();
459   myClsMaskPoints->SetInput(myCellCenters->GetOutput());
460   myClsMaskPoints->SetOnRatio(1);
461     
462   myClsSelectVisiblePoints = vtkSelectVisiblePoints::New();
463   myClsSelectVisiblePoints->SetInput(myClsMaskPoints->GetOutput());
464   myClsSelectVisiblePoints->SelectInvisibleOff();
465   myClsSelectVisiblePoints->SetTolerance(0.1);
466     
467   myClsLabeledDataMapper = vtkLabeledDataMapper::New();
468   myClsLabeledDataMapper->SetInput(myClsSelectVisiblePoints->GetOutput());
469   myClsLabeledDataMapper->SetLabelFormat("%g");
470   myClsLabeledDataMapper->SetLabelModeToLabelScalars();
471     
472   vtkTextProperty* aClsTextProp = vtkTextProperty::New();
473   aClsTextProp->SetFontFamilyToTimes();
474   static int aCellsFontSize = 12;
475   aClsTextProp->SetFontSize(aCellsFontSize);
476   aClsTextProp->SetBold(1);
477   aClsTextProp->SetItalic(0);
478   aClsTextProp->SetShadow(0);
479   myClsLabeledDataMapper->SetLabelTextProperty(aClsTextProp);
480   aClsTextProp->Delete();
481     
482   myIsCellsLabeled = false;
483
484   myCellsLabels = vtkActor2D::New();
485   myCellsLabels->SetMapper(myClsLabeledDataMapper);
486   myCellsLabels->GetProperty()->SetColor(0,1,0);
487   myCellsLabels->SetVisibility(myIsCellsLabeled);
488
489   // Clipping planes
490   myImplicitBoolean = vtkImplicitBoolean::New();
491   myImplicitBoolean->SetOperationTypeToIntersection();
492 }
493
494
495 SMESH_ActorDef::~SMESH_ActorDef(){
496   if(MYDEBUG) MESSAGE("~SMESH_ActorDef");
497
498   myScalarBarActor->Delete();
499   myLookupTable->Delete();
500
501   mySurfaceProp->Delete();
502   myBackSurfaceProp->Delete();
503
504   myEdgeProp->Delete();
505   myHighlightProp->Delete();
506   myPreselectProp->Delete();
507
508   myNodeProp->Delete();
509
510   my1DProp->Delete();
511   my1DActor->Delete();
512
513   my1DExtProp->Delete();
514   my1DExtActor->Delete();
515
516   my2DActor->Delete();
517   my3DActor->Delete();
518
519   myNodeActor->Delete();
520   myBaseActor->Delete();
521
522   myHighlitableActor->Delete();
523   myNodeHighlitableActor->Delete();
524
525
526   //Deleting of pints numbering pipeline
527   //---------------------------------------
528   myPointsNumDataSet->Delete();
529
530   myPtsLabeledDataMapper->RemoveAllInputs();
531   myPtsLabeledDataMapper->Delete();
532
533   myPtsSelectVisiblePoints->UnRegisterAllOutputs();
534   myPtsSelectVisiblePoints->Delete();
535
536   myPtsMaskPoints->UnRegisterAllOutputs();
537   myPtsMaskPoints->Delete();
538
539   myPointLabels->Delete();
540
541
542   //Deleting of cells numbering pipeline
543   //---------------------------------------
544   myCellsNumDataSet->Delete();
545
546   myClsLabeledDataMapper->RemoveAllInputs();
547   myClsLabeledDataMapper->Delete();
548
549   myClsSelectVisiblePoints->UnRegisterAllOutputs();
550   myClsSelectVisiblePoints->Delete();
551
552   myClsMaskPoints->UnRegisterAllOutputs();
553   myClsMaskPoints->Delete();
554
555   myCellCenters->UnRegisterAllOutputs();
556   myCellCenters->Delete();
557
558   myCellsLabels->Delete();
559
560   myImplicitBoolean->Delete();
561
562   myTimeStamp->Delete();
563 }
564
565
566 void SMESH_ActorDef::SetPointsLabeled( bool theIsPointsLabeled )
567 {
568   vtkUnstructuredGrid* aGrid = GetUnstructuredGrid();
569   myIsPointsLabeled = theIsPointsLabeled && aGrid->GetNumberOfPoints();
570
571   if ( myIsPointsLabeled )
572   {
573     myPointsNumDataSet->ShallowCopy(aGrid);
574     vtkDataSet *aDataSet = myPointsNumDataSet;
575     
576     int aNbElem = aDataSet->GetNumberOfPoints();
577     
578     vtkIntArray *anArray = vtkIntArray::New();
579     anArray->SetNumberOfValues( aNbElem );
580     
581     for ( int anId = 0; anId < aNbElem; anId++ )
582     {
583       int aSMDSId = myVisualObj->GetNodeObjId( anId );
584       anArray->SetValue( anId, aSMDSId );
585     }
586     
587     aDataSet->GetPointData()->SetScalars( anArray );
588     anArray->Delete();
589     myPtsMaskPoints->SetInput( aDataSet );
590     myPointLabels->SetVisibility( GetVisibility() );
591   }
592   else
593   {
594     myPointLabels->SetVisibility( false );
595   }
596   SetRepresentation(GetRepresentation());
597   myTimeStamp->Modified();
598 }
599
600
601 void SMESH_ActorDef::SetCellsLabeled(bool theIsCellsLabeled){
602   vtkUnstructuredGrid* aGrid = GetUnstructuredGrid();
603   myIsCellsLabeled = theIsCellsLabeled && aGrid->GetNumberOfPoints();
604   if(myIsCellsLabeled){
605     myCellsNumDataSet->ShallowCopy(aGrid);
606     vtkDataSet *aDataSet = myCellsNumDataSet;
607     int aNbElem = aDataSet->GetNumberOfCells();
608     vtkIntArray *anArray = vtkIntArray::New();
609     anArray->SetNumberOfValues(aNbElem);
610     for(int anId = 0; anId < aNbElem; anId++){
611       int aSMDSId = myVisualObj->GetElemObjId(anId);
612       anArray->SetValue(anId,aSMDSId);
613     }
614     aDataSet->GetCellData()->SetScalars(anArray);
615     myCellCenters->SetInput(aDataSet);
616     myCellsLabels->SetVisibility(GetVisibility());
617   }else{
618     myCellsLabels->SetVisibility(false);
619   }
620   myTimeStamp->Modified();
621 }
622
623
624 void SMESH_ActorDef::SetControlMode(eControl theMode){
625   myControlMode = eNone;
626
627   my1DActor->GetMapper()->SetScalarVisibility(false);
628   my2DActor->GetMapper()->SetScalarVisibility(false);
629   my3DActor->GetMapper()->SetScalarVisibility(false);
630   myScalarBarActor->SetVisibility(false);
631
632   bool anIsScalarVisible = theMode > eNone;
633
634   if(anIsScalarVisible){
635     SMESH::Controls::FunctorPtr aFunctor;
636     switch(theMode){
637     case eLength:
638     {
639       SMESH::Controls::Length* aControl = new SMESH::Controls::Length();
640       aControl->SetPrecision( myControlsPrecision );
641       aFunctor.reset( aControl );
642       myControlActor = my1DActor;
643       break;
644     }
645     case eLength2D:
646     {
647       aFunctor.reset(new SMESH::Controls::Length2D());
648       myControlActor = my2DActor;
649       break;
650     }
651     case eFreeBorders:
652       aFunctor.reset(new SMESH::Controls::FreeBorders());
653       myControlActor = my1DActor;
654       break;
655     case eFreeEdges:
656       aFunctor.reset(new SMESH::Controls::FreeEdges());
657       myControlActor = my2DActor;
658       break;
659     case eMultiConnection:
660       aFunctor.reset(new SMESH::Controls::MultiConnection());
661       myControlActor = my1DActor;
662       break;
663     case eArea:
664     {
665       SMESH::Controls::Area* aControl = new SMESH::Controls::Area();
666       aControl->SetPrecision( myControlsPrecision );
667       aFunctor.reset( aControl );
668       myControlActor = my2DActor;
669       break;
670     }
671     case eTaper:
672     {
673       SMESH::Controls::Taper* aControl = new SMESH::Controls::Taper();
674       aControl->SetPrecision( myControlsPrecision );
675       aFunctor.reset( aControl );
676       myControlActor = my2DActor;
677       break;
678     }
679     case eAspectRatio:
680     {
681       SMESH::Controls::AspectRatio* aControl = new SMESH::Controls::AspectRatio();
682       aControl->SetPrecision( myControlsPrecision );
683       aFunctor.reset( aControl );
684       myControlActor = my2DActor;
685       break;
686     }
687     case eAspectRatio3D:
688     {
689       SMESH::Controls::AspectRatio3D* aControl = new SMESH::Controls::AspectRatio3D();
690       aControl->SetPrecision( myControlsPrecision );
691       aFunctor.reset( aControl );
692       myControlActor = my3DActor;
693       break;
694     }
695     case eMinimumAngle:
696     {
697       SMESH::Controls::MinimumAngle* aControl = new SMESH::Controls::MinimumAngle();
698       aControl->SetPrecision( myControlsPrecision );
699       aFunctor.reset( aControl );
700       myControlActor = my2DActor;
701       break;
702     }
703     case eWarping:
704     {
705       SMESH::Controls::Warping* aControl = new SMESH::Controls::Warping();
706       aControl->SetPrecision( myControlsPrecision );
707       aFunctor.reset( aControl );
708       myControlActor = my2DActor;
709       break;
710     }
711     case eSkew:
712     {
713       SMESH::Controls::Skew* aControl = new SMESH::Controls::Skew();
714       aControl->SetPrecision( myControlsPrecision );
715       aFunctor.reset( aControl );
716       myControlActor = my2DActor;
717       break;
718     }
719     default:
720       return;
721     }
722
723     vtkUnstructuredGrid* aGrid = myControlActor->GetUnstructuredGrid();
724     vtkIdType aNbCells = aGrid->GetNumberOfCells();
725     if(aNbCells){
726       myControlMode = theMode;
727       switch(myControlMode){
728       case eFreeEdges:
729       case eFreeBorders:
730         my1DExtActor->SetExtControlMode(aFunctor,myControlActor);
731         break;
732       case eLength2D:
733         my1DExtActor->SetExtControlMode(aFunctor,myControlActor,myScalarBarActor,myLookupTable);
734         break;
735       default:
736         myControlActor->SetControlMode(aFunctor,myScalarBarActor,myLookupTable);
737       }
738     }
739   }
740   SetRepresentation(GetRepresentation());
741
742   myTimeStamp->Modified();
743   Modified();
744 }
745
746
747 void SMESH_ActorDef::AddToRender(vtkRenderer* theRenderer){
748   SALOME_Actor::AddToRender(theRenderer);
749
750   theRenderer->AddActor(myNodeActor);
751   theRenderer->AddActor(myBaseActor);
752
753   theRenderer->AddActor(my3DActor);
754   theRenderer->AddActor(my2DActor);
755
756   theRenderer->AddActor(my1DActor);
757   theRenderer->AddActor(my1DExtActor);
758
759   theRenderer->AddActor(myHighlitableActor);
760   theRenderer->AddActor(myNodeHighlitableActor);
761
762   theRenderer->AddActor2D(myScalarBarActor);
763
764   myPtsSelectVisiblePoints->SetRenderer(theRenderer);
765   myClsSelectVisiblePoints->SetRenderer(theRenderer);
766
767   theRenderer->AddActor2D(myPointLabels);
768   theRenderer->AddActor2D(myCellsLabels);
769 }
770
771 void SMESH_ActorDef::RemoveFromRender(vtkRenderer* theRenderer){
772   SALOME_Actor::RemoveFromRender(theRenderer);
773
774   theRenderer->RemoveActor(myNodeActor);
775   theRenderer->RemoveActor(myBaseActor);
776
777   theRenderer->RemoveActor(myHighlitableActor);
778   theRenderer->RemoveActor(myNodeHighlitableActor);
779
780   theRenderer->RemoveActor(my1DActor);
781   theRenderer->RemoveActor(my1DExtActor);
782
783   theRenderer->RemoveActor(my2DActor);
784   theRenderer->RemoveActor(my3DActor);
785
786   theRenderer->RemoveActor(myScalarBarActor);
787   theRenderer->RemoveActor(myPointLabels);
788   theRenderer->RemoveActor(myCellsLabels);
789 }
790
791
792 bool SMESH_ActorDef::Init(TVisualObjPtr theVisualObj, 
793                           const char* theEntry, 
794                           const char* theName,
795                           int theIsClear)
796 {
797   Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(theEntry,"SMESH",theName);
798   setIO(anIO);
799   setName(theName);
800
801   myVisualObj = theVisualObj;
802   myNodeActor->myVisualObj = myVisualObj;
803   myBaseActor->myVisualObj = myVisualObj;
804
805   myHighlitableActor->myVisualObj = myVisualObj;
806   myNodeHighlitableActor->myVisualObj = myVisualObj;
807
808   my1DActor->myVisualObj = myVisualObj;
809   my1DExtActor->myVisualObj = myVisualObj;
810
811   my2DActor->myVisualObj = myVisualObj;
812   my3DActor->myVisualObj = myVisualObj;
813
814   myVisualObj->Update(theIsClear);
815
816   myNodeActor->Init(myVisualObj,myImplicitBoolean);
817   myBaseActor->Init(myVisualObj,myImplicitBoolean);
818   
819   myHighlitableActor->Init(myVisualObj,myImplicitBoolean);
820   myNodeHighlitableActor->Init(myVisualObj,myImplicitBoolean);
821   
822   my1DActor->Init(myVisualObj,myImplicitBoolean);
823   my1DExtActor->Init(myVisualObj,myImplicitBoolean);
824   
825   my2DActor->Init(myVisualObj,myImplicitBoolean);
826   my3DActor->Init(myVisualObj,myImplicitBoolean);
827   
828   my1DActor->GetMapper()->SetLookupTable(myLookupTable);
829   my2DActor->GetMapper()->SetLookupTable(myLookupTable);
830   my3DActor->GetMapper()->SetLookupTable(myLookupTable);
831     
832   float aFactor, aUnits;
833   my2DActor->GetPolygonOffsetParameters(aFactor,aUnits);
834   my2DActor->SetPolygonOffsetParameters(aFactor,aUnits*0.75);
835
836   //SetIsShrunkable(theGrid->GetNumberOfCells() > 10);
837   SetIsShrunkable(true);
838   
839   QString aMode = QAD_CONFIG->getSetting("SMESH:DisplayMode");
840   SetRepresentation(-1);
841   if(aMode.compare("Wireframe") == 0){
842     SetRepresentation(eEdge);
843   }else if(aMode.compare("Shading") == 0){
844     SetRepresentation(eSurface);
845   }else if(aMode.compare("Nodes") == 0){
846     SetRepresentation(ePoint);
847   }
848
849   aMode = QAD_CONFIG->getSetting("SMESH:Shrink");
850   if(aMode == "yes"){
851     SetShrink();
852   }
853
854   myTimeStamp->Modified();
855   Modified();
856   return true;
857 }
858
859
860 float* SMESH_ActorDef::GetBounds(){
861   return myNodeActor->GetBounds();
862 }
863
864
865 vtkDataSet* SMESH_ActorDef::GetInput(){
866   return GetUnstructuredGrid();
867 }
868
869
870 void SMESH_ActorDef::SetTransform(SALOME_Transform* theTransform){
871   myNodeActor->SetTransform(theTransform);
872   myBaseActor->SetTransform(theTransform);
873
874   myHighlitableActor->SetTransform(theTransform);
875   myNodeHighlitableActor->SetTransform(theTransform);
876
877   my1DActor->SetTransform(theTransform);
878   my1DExtActor->SetTransform(theTransform);
879
880   my2DActor->SetTransform(theTransform);
881   my3DActor->SetTransform(theTransform);
882
883   Modified();
884 }
885
886
887 void SMESH_ActorDef::SetMapper(vtkMapper* theMapper){
888   vtkLODActor::SetMapper(theMapper);
889 }
890
891
892 void SMESH_ActorDef::ShallowCopy(vtkProp *prop){
893   SALOME_Actor::ShallowCopy(prop);
894 }
895
896
897 vtkMapper* SMESH_ActorDef::GetMapper(){
898   return myPickableActor->GetMapper();
899 }
900
901
902 vtkUnstructuredGrid* SMESH_ActorDef::GetUnstructuredGrid(){ 
903   return myVisualObj->GetUnstructuredGrid();
904 }
905
906
907 bool SMESH_ActorDef::IsInfinitive(){
908   vtkDataSet *aDataSet = myPickableActor->GetUnstructuredGrid();
909   aDataSet->Update();
910   myIsInfinite = aDataSet->GetNumberOfCells() == 0 ||
911     aDataSet->GetNumberOfCells() == 1 && 
912     aDataSet->GetCell(0)->GetCellType() == VTK_VERTEX;
913   return SALOME_Actor::IsInfinitive();
914 }
915
916
917 void SMESH_ActorDef::SetIsShrunkable(bool theShrunkable){
918   myIsShrinkable = theShrunkable;
919   Modified();
920 }
921
922 float SMESH_ActorDef::GetShrinkFactor(){
923   return myBaseActor->GetShrinkFactor();
924 }
925
926 void SMESH_ActorDef::SetShrinkFactor(float theValue){
927   myBaseActor->SetShrinkFactor(theValue);
928
929   my1DActor->SetShrinkFactor(theValue);
930   my1DExtActor->SetShrinkFactor(theValue);
931
932   my2DActor->SetShrinkFactor(theValue);
933   my3DActor->SetShrinkFactor(theValue);
934
935   Modified();
936 }
937
938 void SMESH_ActorDef::SetShrink(){
939   if(!myIsShrinkable) return;
940
941   myBaseActor->SetShrink();
942
943   my1DActor->SetShrink();
944   my1DExtActor->SetShrink();
945
946   my2DActor->SetShrink();
947   my3DActor->SetShrink();
948
949   myIsShrunk = true;
950   Modified();
951 }
952
953 void SMESH_ActorDef::UnShrink(){
954   if(!myIsShrunk) return;
955
956   myBaseActor->UnShrink();
957
958   my1DActor->UnShrink();
959   my1DExtActor->UnShrink();
960
961   my2DActor->UnShrink();
962   my3DActor->UnShrink();
963
964   myIsShrunk = false;
965   Modified();
966 }
967
968
969 int SMESH_ActorDef::GetNodeObjId(int theVtkID){
970   return myPickableActor->GetNodeObjId(theVtkID);
971 }
972
973 float* SMESH_ActorDef::GetNodeCoord(int theObjID){
974   return myPickableActor->GetNodeCoord(theObjID);
975 }
976
977
978 int SMESH_ActorDef::GetElemObjId(int theVtkID){
979   return myPickableActor->GetElemObjId(theVtkID);
980 }
981
982 vtkCell* SMESH_ActorDef::GetElemCell(int theObjID){
983   return myPickableActor->GetElemCell(theObjID);
984 }
985
986
987 void SMESH_ActorDef::SetVisibility(int theMode){
988   SetVisibility(theMode,true);
989 }
990
991
992 void SMESH_ActorDef::SetVisibility(int theMode, bool theIsUpdateRepersentation){
993   SALOME_Actor::SetVisibility(theMode);
994
995   myNodeActor->VisibilityOff();
996   myBaseActor->VisibilityOff();
997   
998   my1DActor->VisibilityOff();
999   my1DExtActor->VisibilityOff();
1000   
1001   my2DActor->VisibilityOff();
1002   my3DActor->VisibilityOff();
1003   
1004   myScalarBarActor->VisibilityOff();
1005   myPointLabels->VisibilityOff();
1006   myCellsLabels->VisibilityOff();
1007   
1008   if(GetVisibility()){
1009     if(theIsUpdateRepersentation)
1010       SetRepresentation(GetRepresentation());
1011
1012     switch(myControlMode){
1013     case eNone:
1014       break;
1015     case eFreeEdges:
1016     case eFreeBorders:
1017       my1DExtActor->VisibilityOn();
1018       break;
1019     case eLength2D:
1020       my1DExtActor->VisibilityOn();
1021     default:
1022       if(myControlActor->GetUnstructuredGrid()->GetNumberOfCells())
1023         myScalarBarActor->VisibilityOn();
1024     }
1025
1026     if(myRepresentation != ePoint)
1027       myPickableActor->VisibilityOn();
1028
1029     if(myEntityMode & eEdges)
1030       my1DActor->VisibilityOn();
1031     
1032     if(myEntityMode & eFaces)
1033       my2DActor->VisibilityOn();
1034     
1035     if(myEntityMode & eVolumes)
1036       my3DActor->VisibilityOn();
1037     
1038     if(myIsPointsLabeled) myPointLabels->VisibilityOn();
1039     if(myIsCellsLabeled) myCellsLabels->VisibilityOn();
1040   }
1041
1042   Modified();
1043 }
1044
1045
1046 void SMESH_ActorDef::SetEntityMode(unsigned int theMode){
1047   if(!myVisualObj->GetNbEntities(SMDSAbs_Edge))
1048     theMode &= ~eEdges;
1049
1050   if(!myVisualObj->GetNbEntities(SMDSAbs_Face))
1051     theMode &= ~eFaces;
1052
1053   if(!myVisualObj->GetNbEntities(SMDSAbs_Volume))
1054     theMode &= ~eVolumes;
1055
1056   if(!theMode)
1057     return;
1058
1059   myEntityMode = theMode;
1060
1061   SetVisibility(GetVisibility(),false);
1062 }
1063
1064 void SMESH_ActorDef::SetRepresentation(int theMode){ 
1065   int aNbEdges = myVisualObj->GetNbEntities(SMDSAbs_Edge);
1066   int aNbFaces = myVisualObj->GetNbEntities(SMDSAbs_Face);
1067   int aNbVolumes = myVisualObj->GetNbEntities(SMDSAbs_Volume);
1068   if(theMode < 0){
1069     myRepresentation = eSurface;
1070     if(!aNbFaces && !aNbVolumes && aNbEdges){
1071       myRepresentation = eEdge;
1072     }else if(!aNbFaces && !aNbVolumes && !aNbEdges){
1073       myRepresentation = ePoint;
1074     }
1075   }else{
1076     switch(theMode){
1077     case eEdge:
1078       if(!aNbFaces && !aNbVolumes && !aNbEdges) return;
1079       break;
1080     case eSurface:
1081       if(!aNbFaces && !aNbVolumes) return;
1082       break;
1083     }    
1084     myRepresentation = theMode;
1085   }
1086
1087   if(!GetUnstructuredGrid()->GetNumberOfCells())
1088     myRepresentation = ePoint;
1089
1090   if(myIsShrunk){
1091     if(myRepresentation == ePoint){
1092       UnShrink();
1093       myIsShrunk = true;
1094     }else{
1095       SetShrink();
1096     }      
1097   }
1098
1099   myPickableActor = myBaseActor;
1100   myNodeActor->SetVisibility(false);
1101   vtkProperty *aProp = NULL, *aBackProp = NULL;
1102   SMESH_DeviceActor::EReperesent aReperesent = SMESH_DeviceActor::EReperesent(-1);
1103   switch(myRepresentation){
1104   case ePoint: 
1105     myPickableActor = myNodeActor;
1106     myNodeActor->SetVisibility(true);
1107
1108     aProp = aBackProp = myNodeProp;
1109     aReperesent = SMESH_DeviceActor::ePoint;
1110     break;
1111   case eEdge:
1112     aProp = aBackProp = myEdgeProp;
1113     aReperesent = SMESH_DeviceActor::eInsideframe;
1114     break;
1115   case eSurface:
1116     aProp = mySurfaceProp;
1117     aBackProp = myBackSurfaceProp;
1118     aReperesent = SMESH_DeviceActor::eSurface;
1119     break;
1120   }    
1121
1122   my2DActor->SetProperty(aProp);
1123   my2DActor->SetBackfaceProperty(aBackProp);
1124   my2DActor->SetRepresentation(aReperesent);
1125   
1126   my3DActor->SetProperty(aProp);
1127   my3DActor->SetBackfaceProperty(aBackProp);
1128   my3DActor->SetRepresentation(aReperesent);
1129
1130   my1DExtActor->SetVisibility(false);
1131
1132   switch(myControlMode){
1133   case eLength:
1134   case eMultiConnection:
1135     aProp = aBackProp = my1DProp;
1136     if(myRepresentation != ePoint)
1137       aReperesent = SMESH_DeviceActor::eInsideframe;
1138     break;
1139   case eLength2D:
1140   case eFreeEdges:
1141   case eFreeBorders:
1142     my1DExtActor->SetVisibility(true);
1143     break;
1144   }
1145   
1146   my1DActor->SetProperty(aProp);
1147   my1DActor->SetBackfaceProperty(aBackProp);
1148   my1DActor->SetRepresentation(aReperesent);
1149
1150   my1DExtActor->SetRepresentation(aReperesent);
1151   
1152   if(myIsPointsVisible)
1153     myPickableActor = myNodeActor;
1154
1155   if(GetPointRepresentation())
1156     myNodeActor->SetVisibility(true);
1157
1158   SetMapper(myPickableActor->GetMapper());
1159
1160   SetVisibility(GetVisibility(),false);
1161
1162   Modified();
1163 }
1164
1165
1166 void SMESH_ActorDef::SetPointRepresentation(bool theIsPointsVisible){
1167   myIsPointsVisible = theIsPointsVisible;
1168   SetRepresentation(GetRepresentation());
1169 }
1170
1171 bool SMESH_ActorDef::GetPointRepresentation(){ 
1172   return myIsPointsVisible || myIsPointsLabeled;
1173 }
1174
1175
1176 void SMESH_ActorDef::UpdateHighlight(){
1177   myHighlitableActor->SetVisibility(false);
1178   myHighlitableActor->SetHighlited(false);
1179
1180   myNodeHighlitableActor->SetVisibility(false);
1181   myNodeHighlitableActor->SetHighlited(false);
1182
1183   if(myIsHighlighted){
1184     myHighlitableActor->SetProperty(myHighlightProp);
1185   }else if(myIsPreselected){
1186     myHighlitableActor->SetProperty(myPreselectProp);
1187   }
1188
1189   bool isVisible = GetVisibility();
1190
1191   if(myIsHighlighted || myIsPreselected){
1192     if(GetUnstructuredGrid()->GetNumberOfCells()){
1193       myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
1194       myHighlitableActor->SetVisibility(isVisible);
1195       myHighlitableActor->SetHighlited(isVisible);
1196     }
1197     if(myRepresentation == ePoint || GetPointRepresentation()){
1198       myNodeHighlitableActor->SetProperty(myHighlitableActor->GetProperty());
1199       myNodeHighlitableActor->SetVisibility(isVisible);
1200       myNodeHighlitableActor->SetHighlited(isVisible);
1201     }
1202   }
1203 }
1204
1205
1206 void SMESH_ActorDef::highlight(bool theHighlight){
1207   myIsHighlighted = theHighlight;
1208   UpdateHighlight();
1209 }
1210
1211
1212 void SMESH_ActorDef::SetPreSelected(bool thePreselect){ 
1213   myIsPreselected = thePreselect; 
1214   UpdateHighlight();
1215 }
1216
1217
1218 // From vtkFollower
1219 int SMESH_ActorDef::RenderOpaqueGeometry(vtkViewport *vp)
1220 {
1221   if (myPickableActor->GetIsOpaque())
1222     {
1223     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1224     this->Render(ren);
1225     return 1;
1226     }
1227   return 0;
1228 }
1229
1230
1231 int SMESH_ActorDef::RenderTranslucentGeometry(vtkViewport *vp)
1232 {
1233   if (!myPickableActor->GetIsOpaque())
1234     {
1235     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1236     this->Render(ren);
1237     return 1;
1238     }
1239   return 0;
1240 }
1241
1242
1243 void SMESH_ActorDef::Render(vtkRenderer *ren){
1244   unsigned long mTime = myTimeStamp->GetMTime();
1245   unsigned long anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1246   if(anObjTime > mTime)
1247     Update();
1248 }
1249
1250
1251 void SMESH_ActorDef::Update(){
1252   SetVisibility(GetVisibility());
1253   unsigned long int anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1254   unsigned long int aClippingTime = myImplicitBoolean->GetMTime();
1255   unsigned long int aTime = myTimeStamp->GetMTime();
1256   if(MYDEBUG) MESSAGE("SMESH_ActorDef::Update");
1257
1258   if(GetControlMode() != eNone) {
1259     if(anObjTime > aTime || aClippingTime > aTime){
1260       SetControlMode(GetControlMode());
1261       SetVisibility(GetVisibility());
1262     }
1263   }
1264   if(myIsPointsLabeled){
1265     if(anObjTime > aTime || aClippingTime > aTime)
1266       SetPointsLabeled(myIsPointsLabeled);
1267   }
1268   if(myIsCellsLabeled){
1269     if(anObjTime > aTime || aClippingTime > aTime)
1270       SetCellsLabeled(myIsCellsLabeled);
1271   }
1272
1273   myTimeStamp->Modified();
1274   Modified();
1275 }
1276
1277
1278 void SMESH_ActorDef::ReleaseGraphicsResources(vtkWindow *renWin){
1279   SALOME_Actor::ReleaseGraphicsResources(renWin);
1280
1281   myPickableActor->ReleaseGraphicsResources(renWin);
1282 }
1283
1284
1285 static void GetColor(vtkProperty *theProperty, float& r,float& g,float& b){
1286   float* aColor = theProperty->GetColor();
1287   r = aColor[0];
1288   g = aColor[1];
1289   b = aColor[2];
1290 }
1291
1292
1293 void SMESH_ActorDef::SetOpacity(float theValue){
1294   mySurfaceProp->SetOpacity(theValue);
1295   myBackSurfaceProp->SetOpacity(theValue);
1296   myEdgeProp->SetOpacity(theValue);
1297   myNodeProp->SetOpacity(theValue);
1298
1299   my1DProp->SetOpacity(theValue);
1300 }
1301
1302
1303 float SMESH_ActorDef::GetOpacity(){
1304   return mySurfaceProp->GetOpacity();
1305 }
1306
1307
1308 void SMESH_ActorDef::SetSufaceColor(float r,float g,float b){
1309   mySurfaceProp->SetColor(r,g,b);
1310   Modified();
1311 }
1312
1313 void SMESH_ActorDef::GetSufaceColor(float& r,float& g,float& b){
1314   ::GetColor(mySurfaceProp,r,g,b);
1315 }
1316
1317 void SMESH_ActorDef::SetBackSufaceColor(float r,float g,float b){
1318   myBackSurfaceProp->SetColor(r,g,b);
1319   Modified();
1320 }
1321
1322 void SMESH_ActorDef::GetBackSufaceColor(float& r,float& g,float& b){
1323   ::GetColor(myBackSurfaceProp,r,g,b);
1324 }
1325
1326 void SMESH_ActorDef::SetEdgeColor(float r,float g,float b){
1327   myEdgeProp->SetColor(r,g,b);
1328   my1DProp->SetColor(r,g,b);
1329   my1DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1330   Modified();
1331 }
1332
1333 void SMESH_ActorDef::GetEdgeColor(float& r,float& g,float& b){
1334   ::GetColor(myEdgeProp,r,g,b);
1335 }
1336
1337 void SMESH_ActorDef::SetNodeColor(float r,float g,float b){ 
1338   myNodeProp->SetColor(r,g,b);
1339   Modified();
1340 }
1341
1342 void SMESH_ActorDef::GetNodeColor(float& r,float& g,float& b){ 
1343   ::GetColor(myNodeProp,r,g,b);
1344 }
1345
1346 void SMESH_ActorDef::SetHighlightColor(float r,float g,float b){ 
1347   myHighlightProp->SetColor(r,g,b);
1348   Modified();
1349 }
1350
1351 void SMESH_ActorDef::GetHighlightColor(float& r,float& g,float& b){ 
1352   ::GetColor(myHighlightProp,r,g,b);
1353 }
1354
1355 void SMESH_ActorDef::SetPreHighlightColor(float r,float g,float b){ 
1356   myPreselectProp->SetColor(r,g,b);
1357   Modified();
1358 }
1359
1360 void SMESH_ActorDef::GetPreHighlightColor(float& r,float& g,float& b){ 
1361   ::GetColor(myPreselectProp,r,g,b);
1362 }
1363
1364
1365 float SMESH_ActorDef::GetLineWidth(){
1366   return myEdgeProp->GetLineWidth();
1367 }
1368
1369
1370 void SMESH_ActorDef::SetLineWidth(float theVal){
1371   myEdgeProp->SetLineWidth(theVal);
1372
1373   my1DProp->SetLineWidth(theVal + aLineWidthInc);
1374   my1DExtProp->SetLineWidth(theVal + aLineWidthInc);
1375
1376   Modified();
1377 }
1378
1379
1380 void SMESH_ActorDef::SetNodeSize(float theVal){
1381   myNodeProp->SetPointSize(theVal);
1382   myHighlightProp->SetPointSize(theVal);
1383   myPreselectProp->SetPointSize(theVal);
1384
1385   my1DProp->SetPointSize(theVal + aPointSizeInc);
1386   my1DExtProp->SetPointSize(theVal + aPointSizeInc);
1387
1388   Modified();
1389 }
1390
1391 float SMESH_ActorDef::GetNodeSize(){
1392   return myNodeProp->GetPointSize();
1393 }
1394
1395 int SMESH_ActorDef::GetObjDimension( const int theObjId )
1396 {
1397   return myVisualObj->GetElemDimension( theObjId );
1398 }
1399
1400
1401 vtkImplicitBoolean* SMESH_ActorDef::GetPlaneContainer(){
1402   return myImplicitBoolean;
1403 }
1404
1405
1406 static void ComputeBoundsParam(vtkDataSet* theDataSet,
1407                                float theDirection[3], float theMinPnt[3],
1408                                float& theMaxBoundPrj, float& theMinBoundPrj)
1409 {
1410   float aBounds[6];
1411   theDataSet->GetBounds(aBounds);
1412
1413   //Enlarge bounds in order to avoid conflicts of precision
1414   for(int i = 0; i < 6; i += 2){
1415     static double EPS = 1.0E-3;
1416     float aDelta = (aBounds[i+1] - aBounds[i])*EPS;
1417     aBounds[i] -= aDelta;
1418     aBounds[i+1] += aDelta;
1419   }
1420
1421   float aBoundPoints[8][3] = { {aBounds[0],aBounds[2],aBounds[4]},
1422                                {aBounds[1],aBounds[2],aBounds[4]},
1423                                {aBounds[0],aBounds[3],aBounds[4]},
1424                                {aBounds[1],aBounds[3],aBounds[4]},
1425                                {aBounds[0],aBounds[2],aBounds[5]},
1426                                {aBounds[1],aBounds[2],aBounds[5]}, 
1427                                {aBounds[0],aBounds[3],aBounds[5]}, 
1428                                {aBounds[1],aBounds[3],aBounds[5]}};
1429
1430   int aMaxId = 0, aMinId = aMaxId;
1431   theMaxBoundPrj = vtkMath::Dot(theDirection,aBoundPoints[aMaxId]);
1432   theMinBoundPrj = theMaxBoundPrj;
1433   for(int i = 1; i < 8; i++){
1434     float aTmp = vtkMath::Dot(theDirection,aBoundPoints[i]);
1435     if(theMaxBoundPrj < aTmp){
1436       theMaxBoundPrj = aTmp;
1437       aMaxId = i;
1438     }
1439     if(theMinBoundPrj > aTmp){
1440       theMinBoundPrj = aTmp;
1441       aMinId = i;
1442     }
1443   }
1444   float *aMinPnt = aBoundPoints[aMaxId];
1445   theMinPnt[0] = aMinPnt[0];
1446   theMinPnt[1] = aMinPnt[1];
1447   theMinPnt[2] = aMinPnt[2];
1448 }
1449
1450
1451 static void DistanceToPosition(vtkDataSet* theDataSet,
1452                                float theDirection[3], float theDist, float thePos[3])
1453 {
1454   float aMaxBoundPrj, aMinBoundPrj, aMinPnt[3];
1455   ComputeBoundsParam(theDataSet,theDirection,aMinPnt,aMaxBoundPrj,aMinBoundPrj);
1456   float aLength = (aMaxBoundPrj-aMinBoundPrj)*theDist;
1457   thePos[0] = aMinPnt[0]-theDirection[0]*aLength;
1458   thePos[1] = aMinPnt[1]-theDirection[1]*aLength;
1459   thePos[2] = aMinPnt[2]-theDirection[2]*aLength;
1460 }
1461
1462
1463 static void PositionToDistance(vtkDataSet* theDataSet, 
1464                                float theDirection[3], float thePos[3], float& theDist)
1465 {
1466   float aMaxBoundPrj, aMinBoundPrj, aMinPnt[3];
1467   ComputeBoundsParam(theDataSet,theDirection,aMinPnt,aMaxBoundPrj,aMinBoundPrj);
1468   float aPrj = vtkMath::Dot(theDirection,thePos);
1469   theDist = (aPrj-aMinBoundPrj)/(aMaxBoundPrj-aMinBoundPrj);
1470 }
1471
1472
1473 void SMESH_ActorDef::SetPlaneParam(float theDir[3], float theDist, vtkPlane* thePlane)
1474 {
1475   thePlane->SetNormal(theDir);
1476   float anOrigin[3];
1477   ::DistanceToPosition(GetUnstructuredGrid(),theDir,theDist,anOrigin);
1478   thePlane->SetOrigin(anOrigin);
1479   Update();
1480 }
1481
1482
1483 void SMESH_ActorDef::GetPlaneParam(float theDir[3], float& theDist, vtkPlane* thePlane)
1484 {
1485   thePlane->GetNormal(theDir);
1486
1487   float anOrigin[3];
1488   thePlane->GetOrigin(anOrigin);
1489   ::PositionToDistance(GetUnstructuredGrid(),theDir,anOrigin,theDist);
1490 }