Salome HOME
25d05e6765786118dac3a580bc695227fba643ef
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ComputeScalarValue.h
1 //  File      : SMESHGUI_ComputeScalarValue.h
2 //  Created   : Mon Jun 24 14:06:00 2002
3 //  Author    : Nicolas REJNERI
4
5 //  Project   : SALOME
6 //  Module    : SMESH
7 //  Copyright : Open CASCADE 2002
8 //  $Header$
9
10 #ifndef SMESHGUI_CONTROLALGORITHMS_H
11 #define SMESHGUI_CONTROLALGORITHMS_H
12
13 #include <vtkCell.h> 
14
15 class SMESHGUI_ComputeScalarValue {
16  public:
17   static double LengthEdges(vtkCell* theCell);
18   static double AreaElements(vtkCell* theCell);
19   static double Taper(vtkCell* theCell);
20   static double AspectRatio(vtkCell* theCell);
21   static double MinimumAngle(vtkCell* theCell);
22   static double Skew(vtkCell* theCell);
23   static double Warp(vtkCell* theCell);
24 };
25
26 #endif