Salome HOME
Bug PAL7334
[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   my1DExtActor->GetMapper()->SetLookupTable(myLookupTable);
830
831   my2DActor->GetMapper()->SetLookupTable(myLookupTable);
832   my3DActor->GetMapper()->SetLookupTable(myLookupTable);
833     
834   float aFactor, aUnits;
835   my2DActor->GetPolygonOffsetParameters(aFactor,aUnits);
836   my2DActor->SetPolygonOffsetParameters(aFactor,aUnits*0.75);
837
838   //SetIsShrunkable(theGrid->GetNumberOfCells() > 10);
839   SetIsShrunkable(true);
840   
841   QString aMode = QAD_CONFIG->getSetting("SMESH:DisplayMode");
842   SetRepresentation(-1);
843   if(aMode.compare("Wireframe") == 0){
844     SetRepresentation(eEdge);
845   }else if(aMode.compare("Shading") == 0){
846     SetRepresentation(eSurface);
847   }else if(aMode.compare("Nodes") == 0){
848     SetRepresentation(ePoint);
849   }
850
851   aMode = QAD_CONFIG->getSetting("SMESH:Shrink");
852   if(aMode == "yes"){
853     SetShrink();
854   }
855
856   myTimeStamp->Modified();
857   Modified();
858   return true;
859 }
860
861
862 float* SMESH_ActorDef::GetBounds(){
863   return myNodeActor->GetBounds();
864 }
865
866
867 vtkDataSet* SMESH_ActorDef::GetInput(){
868   return GetUnstructuredGrid();
869 }
870
871
872 void SMESH_ActorDef::SetTransform(SALOME_Transform* theTransform){
873   myNodeActor->SetTransform(theTransform);
874   myBaseActor->SetTransform(theTransform);
875
876   myHighlitableActor->SetTransform(theTransform);
877   myNodeHighlitableActor->SetTransform(theTransform);
878
879   my1DActor->SetTransform(theTransform);
880   my1DExtActor->SetTransform(theTransform);
881
882   my2DActor->SetTransform(theTransform);
883   my3DActor->SetTransform(theTransform);
884
885   Modified();
886 }
887
888
889 void SMESH_ActorDef::SetMapper(vtkMapper* theMapper){
890   vtkLODActor::SetMapper(theMapper);
891 }
892
893
894 void SMESH_ActorDef::ShallowCopy(vtkProp *prop){
895   SALOME_Actor::ShallowCopy(prop);
896 }
897
898
899 vtkMapper* SMESH_ActorDef::GetMapper(){
900   return myPickableActor->GetMapper();
901 }
902
903
904 vtkUnstructuredGrid* SMESH_ActorDef::GetUnstructuredGrid(){ 
905   return myVisualObj->GetUnstructuredGrid();
906 }
907
908
909 bool SMESH_ActorDef::IsInfinitive(){
910   vtkDataSet *aDataSet = myPickableActor->GetUnstructuredGrid();
911   aDataSet->Update();
912   myIsInfinite = aDataSet->GetNumberOfCells() == 0 ||
913     aDataSet->GetNumberOfCells() == 1 && 
914     aDataSet->GetCell(0)->GetCellType() == VTK_VERTEX;
915   return SALOME_Actor::IsInfinitive();
916 }
917
918
919 void SMESH_ActorDef::SetIsShrunkable(bool theShrunkable){
920   myIsShrinkable = theShrunkable;
921   Modified();
922 }
923
924 float SMESH_ActorDef::GetShrinkFactor(){
925   return myBaseActor->GetShrinkFactor();
926 }
927
928 void SMESH_ActorDef::SetShrinkFactor(float theValue){
929   myBaseActor->SetShrinkFactor(theValue);
930
931   my1DActor->SetShrinkFactor(theValue);
932   my1DExtActor->SetShrinkFactor(theValue);
933
934   my2DActor->SetShrinkFactor(theValue);
935   my3DActor->SetShrinkFactor(theValue);
936
937   Modified();
938 }
939
940 void SMESH_ActorDef::SetShrink(){
941   if(!myIsShrinkable) return;
942
943   myBaseActor->SetShrink();
944
945   my1DActor->SetShrink();
946   my1DExtActor->SetShrink();
947
948   my2DActor->SetShrink();
949   my3DActor->SetShrink();
950
951   myIsShrunk = true;
952   Modified();
953 }
954
955 void SMESH_ActorDef::UnShrink(){
956   if(!myIsShrunk) return;
957
958   myBaseActor->UnShrink();
959
960   my1DActor->UnShrink();
961   my1DExtActor->UnShrink();
962
963   my2DActor->UnShrink();
964   my3DActor->UnShrink();
965
966   myIsShrunk = false;
967   Modified();
968 }
969
970
971 int SMESH_ActorDef::GetNodeObjId(int theVtkID){
972   return myPickableActor->GetNodeObjId(theVtkID);
973 }
974
975 float* SMESH_ActorDef::GetNodeCoord(int theObjID){
976   return myPickableActor->GetNodeCoord(theObjID);
977 }
978
979
980 int SMESH_ActorDef::GetElemObjId(int theVtkID){
981   return myPickableActor->GetElemObjId(theVtkID);
982 }
983
984 vtkCell* SMESH_ActorDef::GetElemCell(int theObjID){
985   return myPickableActor->GetElemCell(theObjID);
986 }
987
988
989 void SMESH_ActorDef::SetVisibility(int theMode){
990   SetVisibility(theMode,true);
991 }
992
993
994 void SMESH_ActorDef::SetVisibility(int theMode, bool theIsUpdateRepersentation){
995   SALOME_Actor::SetVisibility(theMode);
996
997   myNodeActor->VisibilityOff();
998   myBaseActor->VisibilityOff();
999   
1000   my1DActor->VisibilityOff();
1001   my1DExtActor->VisibilityOff();
1002   
1003   my2DActor->VisibilityOff();
1004   my3DActor->VisibilityOff();
1005   
1006   myScalarBarActor->VisibilityOff();
1007   myPointLabels->VisibilityOff();
1008   myCellsLabels->VisibilityOff();
1009   
1010   if(GetVisibility()){
1011     if(theIsUpdateRepersentation)
1012       SetRepresentation(GetRepresentation());
1013
1014     switch(myControlMode){
1015     case eNone:
1016       break;
1017     case eFreeEdges:
1018     case eFreeBorders:
1019       my1DExtActor->VisibilityOn();
1020       break;
1021     case eLength2D:
1022       my1DExtActor->VisibilityOn();
1023     default:
1024       if(myControlActor->GetUnstructuredGrid()->GetNumberOfCells())
1025         myScalarBarActor->VisibilityOn();
1026     }
1027
1028     if(myRepresentation != ePoint)
1029       myPickableActor->VisibilityOn();
1030
1031     if(myEntityMode & eEdges)
1032       my1DActor->VisibilityOn();
1033     
1034     if(myEntityMode & eFaces)
1035       my2DActor->VisibilityOn();
1036     
1037     if(myEntityMode & eVolumes)
1038       my3DActor->VisibilityOn();
1039     
1040     if(myIsPointsLabeled) myPointLabels->VisibilityOn();
1041     if(myIsCellsLabeled) myCellsLabels->VisibilityOn();
1042   }
1043
1044   Modified();
1045 }
1046
1047
1048 void SMESH_ActorDef::SetEntityMode(unsigned int theMode){
1049   if(!myVisualObj->GetNbEntities(SMDSAbs_Edge))
1050     theMode &= ~eEdges;
1051
1052   if(!myVisualObj->GetNbEntities(SMDSAbs_Face))
1053     theMode &= ~eFaces;
1054
1055   if(!myVisualObj->GetNbEntities(SMDSAbs_Volume))
1056     theMode &= ~eVolumes;
1057
1058   if(!theMode)
1059     return;
1060
1061   myEntityMode = theMode;
1062
1063   SetVisibility(GetVisibility(),false);
1064 }
1065
1066 void SMESH_ActorDef::SetRepresentation(int theMode){ 
1067   int aNbEdges = myVisualObj->GetNbEntities(SMDSAbs_Edge);
1068   int aNbFaces = myVisualObj->GetNbEntities(SMDSAbs_Face);
1069   int aNbVolumes = myVisualObj->GetNbEntities(SMDSAbs_Volume);
1070   if(theMode < 0){
1071     myRepresentation = eSurface;
1072     if(!aNbFaces && !aNbVolumes && aNbEdges){
1073       myRepresentation = eEdge;
1074     }else if(!aNbFaces && !aNbVolumes && !aNbEdges){
1075       myRepresentation = ePoint;
1076     }
1077   }else{
1078     switch(theMode){
1079     case eEdge:
1080       if(!aNbFaces && !aNbVolumes && !aNbEdges) return;
1081       break;
1082     case eSurface:
1083       if(!aNbFaces && !aNbVolumes) return;
1084       break;
1085     }    
1086     myRepresentation = theMode;
1087   }
1088
1089   if(!GetUnstructuredGrid()->GetNumberOfCells())
1090     myRepresentation = ePoint;
1091
1092   if(myIsShrunk){
1093     if(myRepresentation == ePoint){
1094       UnShrink();
1095       myIsShrunk = true;
1096     }else{
1097       SetShrink();
1098     }      
1099   }
1100
1101   myPickableActor = myBaseActor;
1102   myNodeActor->SetVisibility(false);
1103   vtkProperty *aProp = NULL, *aBackProp = NULL;
1104   SMESH_DeviceActor::EReperesent aReperesent = SMESH_DeviceActor::EReperesent(-1);
1105   switch(myRepresentation){
1106   case ePoint: 
1107     myPickableActor = myNodeActor;
1108     myNodeActor->SetVisibility(true);
1109
1110     aProp = aBackProp = myNodeProp;
1111     aReperesent = SMESH_DeviceActor::ePoint;
1112     break;
1113   case eEdge:
1114     aProp = aBackProp = myEdgeProp;
1115     aReperesent = SMESH_DeviceActor::eInsideframe;
1116     break;
1117   case eSurface:
1118     aProp = mySurfaceProp;
1119     aBackProp = myBackSurfaceProp;
1120     aReperesent = SMESH_DeviceActor::eSurface;
1121     break;
1122   }    
1123
1124   my2DActor->SetProperty(aProp);
1125   my2DActor->SetBackfaceProperty(aBackProp);
1126   my2DActor->SetRepresentation(aReperesent);
1127   
1128   my3DActor->SetProperty(aProp);
1129   my3DActor->SetBackfaceProperty(aBackProp);
1130   my3DActor->SetRepresentation(aReperesent);
1131
1132   my1DExtActor->SetVisibility(false);
1133
1134   switch(myControlMode){
1135   case eLength:
1136   case eMultiConnection:
1137     aProp = aBackProp = my1DProp;
1138     if(myRepresentation != ePoint)
1139       aReperesent = SMESH_DeviceActor::eInsideframe;
1140     break;
1141   }
1142   
1143   my1DActor->SetProperty(aProp);
1144   my1DActor->SetBackfaceProperty(aBackProp);
1145   my1DActor->SetRepresentation(aReperesent);
1146
1147   my1DExtActor->SetRepresentation(aReperesent);
1148   
1149   if(myIsPointsVisible)
1150     myPickableActor = myNodeActor;
1151
1152   if(GetPointRepresentation())
1153     myNodeActor->SetVisibility(true);
1154
1155   SetMapper(myPickableActor->GetMapper());
1156
1157   SetVisibility(GetVisibility(),false);
1158
1159   Modified();
1160 }
1161
1162
1163 void SMESH_ActorDef::SetPointRepresentation(bool theIsPointsVisible){
1164   myIsPointsVisible = theIsPointsVisible;
1165   SetRepresentation(GetRepresentation());
1166 }
1167
1168 bool SMESH_ActorDef::GetPointRepresentation(){ 
1169   return myIsPointsVisible || myIsPointsLabeled;
1170 }
1171
1172
1173 void SMESH_ActorDef::UpdateHighlight(){
1174   myHighlitableActor->SetVisibility(false);
1175   myHighlitableActor->SetHighlited(false);
1176
1177   myNodeHighlitableActor->SetVisibility(false);
1178   myNodeHighlitableActor->SetHighlited(false);
1179
1180   if(myIsHighlighted){
1181     myHighlitableActor->SetProperty(myHighlightProp);
1182   }else if(myIsPreselected){
1183     myHighlitableActor->SetProperty(myPreselectProp);
1184   }
1185
1186   bool isVisible = GetVisibility();
1187
1188   if(myIsHighlighted || myIsPreselected){
1189     if(GetUnstructuredGrid()->GetNumberOfCells()){
1190       myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
1191       myHighlitableActor->SetVisibility(isVisible);
1192       myHighlitableActor->SetHighlited(isVisible);
1193     }
1194     if(myRepresentation == ePoint || GetPointRepresentation()){
1195       myNodeHighlitableActor->SetProperty(myHighlitableActor->GetProperty());
1196       myNodeHighlitableActor->SetVisibility(isVisible);
1197       myNodeHighlitableActor->SetHighlited(isVisible);
1198     }
1199   }
1200 }
1201
1202
1203 void SMESH_ActorDef::highlight(bool theHighlight){
1204   myIsHighlighted = theHighlight;
1205   UpdateHighlight();
1206 }
1207
1208
1209 void SMESH_ActorDef::SetPreSelected(bool thePreselect){ 
1210   myIsPreselected = thePreselect; 
1211   UpdateHighlight();
1212 }
1213
1214
1215 // From vtkFollower
1216 int SMESH_ActorDef::RenderOpaqueGeometry(vtkViewport *vp)
1217 {
1218   if (myPickableActor->GetIsOpaque())
1219     {
1220     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1221     this->Render(ren);
1222     return 1;
1223     }
1224   return 0;
1225 }
1226
1227
1228 int SMESH_ActorDef::RenderTranslucentGeometry(vtkViewport *vp)
1229 {
1230   if (!myPickableActor->GetIsOpaque())
1231     {
1232     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1233     this->Render(ren);
1234     return 1;
1235     }
1236   return 0;
1237 }
1238
1239
1240 void SMESH_ActorDef::Render(vtkRenderer *ren){
1241   unsigned long mTime = myTimeStamp->GetMTime();
1242   unsigned long anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1243   if(anObjTime > mTime)
1244     Update();
1245 }
1246
1247
1248 void SMESH_ActorDef::Update(){
1249   SetVisibility(GetVisibility());
1250   unsigned long int anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1251   unsigned long int aClippingTime = myImplicitBoolean->GetMTime();
1252   unsigned long int aTime = myTimeStamp->GetMTime();
1253   if(MYDEBUG) MESSAGE("SMESH_ActorDef::Update");
1254
1255   if(GetControlMode() != eNone) {
1256     if(anObjTime > aTime || aClippingTime > aTime){
1257       SetControlMode(GetControlMode());
1258       SetVisibility(GetVisibility());
1259     }
1260   }
1261   if(myIsPointsLabeled){
1262     if(anObjTime > aTime || aClippingTime > aTime)
1263       SetPointsLabeled(myIsPointsLabeled);
1264   }
1265   if(myIsCellsLabeled){
1266     if(anObjTime > aTime || aClippingTime > aTime)
1267       SetCellsLabeled(myIsCellsLabeled);
1268   }
1269
1270   myTimeStamp->Modified();
1271   Modified();
1272 }
1273
1274
1275 void SMESH_ActorDef::ReleaseGraphicsResources(vtkWindow *renWin){
1276   SALOME_Actor::ReleaseGraphicsResources(renWin);
1277
1278   myPickableActor->ReleaseGraphicsResources(renWin);
1279 }
1280
1281
1282 static void GetColor(vtkProperty *theProperty, float& r,float& g,float& b){
1283   float* aColor = theProperty->GetColor();
1284   r = aColor[0];
1285   g = aColor[1];
1286   b = aColor[2];
1287 }
1288
1289
1290 void SMESH_ActorDef::SetOpacity(float theValue){
1291   mySurfaceProp->SetOpacity(theValue);
1292   myBackSurfaceProp->SetOpacity(theValue);
1293   myEdgeProp->SetOpacity(theValue);
1294   myNodeProp->SetOpacity(theValue);
1295
1296   my1DProp->SetOpacity(theValue);
1297 }
1298
1299
1300 float SMESH_ActorDef::GetOpacity(){
1301   return mySurfaceProp->GetOpacity();
1302 }
1303
1304
1305 void SMESH_ActorDef::SetSufaceColor(float r,float g,float b){
1306   mySurfaceProp->SetColor(r,g,b);
1307   Modified();
1308 }
1309
1310 void SMESH_ActorDef::GetSufaceColor(float& r,float& g,float& b){
1311   ::GetColor(mySurfaceProp,r,g,b);
1312 }
1313
1314 void SMESH_ActorDef::SetBackSufaceColor(float r,float g,float b){
1315   myBackSurfaceProp->SetColor(r,g,b);
1316   Modified();
1317 }
1318
1319 void SMESH_ActorDef::GetBackSufaceColor(float& r,float& g,float& b){
1320   ::GetColor(myBackSurfaceProp,r,g,b);
1321 }
1322
1323 void SMESH_ActorDef::SetEdgeColor(float r,float g,float b){
1324   myEdgeProp->SetColor(r,g,b);
1325   my1DProp->SetColor(r,g,b);
1326   my1DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1327   Modified();
1328 }
1329
1330 void SMESH_ActorDef::GetEdgeColor(float& r,float& g,float& b){
1331   ::GetColor(myEdgeProp,r,g,b);
1332 }
1333
1334 void SMESH_ActorDef::SetNodeColor(float r,float g,float b){ 
1335   myNodeProp->SetColor(r,g,b);
1336   Modified();
1337 }
1338
1339 void SMESH_ActorDef::GetNodeColor(float& r,float& g,float& b){ 
1340   ::GetColor(myNodeProp,r,g,b);
1341 }
1342
1343 void SMESH_ActorDef::SetHighlightColor(float r,float g,float b){ 
1344   myHighlightProp->SetColor(r,g,b);
1345   Modified();
1346 }
1347
1348 void SMESH_ActorDef::GetHighlightColor(float& r,float& g,float& b){ 
1349   ::GetColor(myHighlightProp,r,g,b);
1350 }
1351
1352 void SMESH_ActorDef::SetPreHighlightColor(float r,float g,float b){ 
1353   myPreselectProp->SetColor(r,g,b);
1354   Modified();
1355 }
1356
1357 void SMESH_ActorDef::GetPreHighlightColor(float& r,float& g,float& b){ 
1358   ::GetColor(myPreselectProp,r,g,b);
1359 }
1360
1361
1362 float SMESH_ActorDef::GetLineWidth(){
1363   return myEdgeProp->GetLineWidth();
1364 }
1365
1366
1367 void SMESH_ActorDef::SetLineWidth(float theVal){
1368   myEdgeProp->SetLineWidth(theVal);
1369
1370   my1DProp->SetLineWidth(theVal + aLineWidthInc);
1371   my1DExtProp->SetLineWidth(theVal + aLineWidthInc);
1372
1373   Modified();
1374 }
1375
1376
1377 void SMESH_ActorDef::SetNodeSize(float theVal){
1378   myNodeProp->SetPointSize(theVal);
1379   myHighlightProp->SetPointSize(theVal);
1380   myPreselectProp->SetPointSize(theVal);
1381
1382   my1DProp->SetPointSize(theVal + aPointSizeInc);
1383   my1DExtProp->SetPointSize(theVal + aPointSizeInc);
1384
1385   Modified();
1386 }
1387
1388 float SMESH_ActorDef::GetNodeSize(){
1389   return myNodeProp->GetPointSize();
1390 }
1391
1392 int SMESH_ActorDef::GetObjDimension( const int theObjId )
1393 {
1394   return myVisualObj->GetElemDimension( theObjId );
1395 }
1396
1397
1398 vtkImplicitBoolean* SMESH_ActorDef::GetPlaneContainer(){
1399   return myImplicitBoolean;
1400 }
1401
1402
1403 static void ComputeBoundsParam(vtkDataSet* theDataSet,
1404                                float theDirection[3], float theMinPnt[3],
1405                                float& theMaxBoundPrj, float& theMinBoundPrj)
1406 {
1407   float aBounds[6];
1408   theDataSet->GetBounds(aBounds);
1409
1410   //Enlarge bounds in order to avoid conflicts of precision
1411   for(int i = 0; i < 6; i += 2){
1412     static double EPS = 1.0E-3;
1413     float aDelta = (aBounds[i+1] - aBounds[i])*EPS;
1414     aBounds[i] -= aDelta;
1415     aBounds[i+1] += aDelta;
1416   }
1417
1418   float aBoundPoints[8][3] = { {aBounds[0],aBounds[2],aBounds[4]},
1419                                {aBounds[1],aBounds[2],aBounds[4]},
1420                                {aBounds[0],aBounds[3],aBounds[4]},
1421                                {aBounds[1],aBounds[3],aBounds[4]},
1422                                {aBounds[0],aBounds[2],aBounds[5]},
1423                                {aBounds[1],aBounds[2],aBounds[5]}, 
1424                                {aBounds[0],aBounds[3],aBounds[5]}, 
1425                                {aBounds[1],aBounds[3],aBounds[5]}};
1426
1427   int aMaxId = 0, aMinId = aMaxId;
1428   theMaxBoundPrj = vtkMath::Dot(theDirection,aBoundPoints[aMaxId]);
1429   theMinBoundPrj = theMaxBoundPrj;
1430   for(int i = 1; i < 8; i++){
1431     float aTmp = vtkMath::Dot(theDirection,aBoundPoints[i]);
1432     if(theMaxBoundPrj < aTmp){
1433       theMaxBoundPrj = aTmp;
1434       aMaxId = i;
1435     }
1436     if(theMinBoundPrj > aTmp){
1437       theMinBoundPrj = aTmp;
1438       aMinId = i;
1439     }
1440   }
1441   float *aMinPnt = aBoundPoints[aMaxId];
1442   theMinPnt[0] = aMinPnt[0];
1443   theMinPnt[1] = aMinPnt[1];
1444   theMinPnt[2] = aMinPnt[2];
1445 }
1446
1447
1448 static void DistanceToPosition(vtkDataSet* theDataSet,
1449                                float theDirection[3], float theDist, float thePos[3])
1450 {
1451   float aMaxBoundPrj, aMinBoundPrj, aMinPnt[3];
1452   ComputeBoundsParam(theDataSet,theDirection,aMinPnt,aMaxBoundPrj,aMinBoundPrj);
1453   float aLength = (aMaxBoundPrj-aMinBoundPrj)*theDist;
1454   thePos[0] = aMinPnt[0]-theDirection[0]*aLength;
1455   thePos[1] = aMinPnt[1]-theDirection[1]*aLength;
1456   thePos[2] = aMinPnt[2]-theDirection[2]*aLength;
1457 }
1458
1459
1460 static void PositionToDistance(vtkDataSet* theDataSet, 
1461                                float theDirection[3], float thePos[3], float& theDist)
1462 {
1463   float aMaxBoundPrj, aMinBoundPrj, aMinPnt[3];
1464   ComputeBoundsParam(theDataSet,theDirection,aMinPnt,aMaxBoundPrj,aMinBoundPrj);
1465   float aPrj = vtkMath::Dot(theDirection,thePos);
1466   theDist = (aPrj-aMinBoundPrj)/(aMaxBoundPrj-aMinBoundPrj);
1467 }
1468
1469
1470 void SMESH_ActorDef::SetPlaneParam(float theDir[3], float theDist, vtkPlane* thePlane)
1471 {
1472   thePlane->SetNormal(theDir);
1473   float anOrigin[3];
1474   ::DistanceToPosition(GetUnstructuredGrid(),theDir,theDist,anOrigin);
1475   thePlane->SetOrigin(anOrigin);
1476   Update();
1477 }
1478
1479
1480 void SMESH_ActorDef::GetPlaneParam(float theDir[3], float& theDist, vtkPlane* thePlane)
1481 {
1482   thePlane->GetNormal(theDir);
1483
1484   float anOrigin[3];
1485   thePlane->GetOrigin(anOrigin);
1486   ::PositionToDistance(GetUnstructuredGrid(),theDir,anOrigin,theDist);
1487 }