]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/SMESHGUI/SMESHGUI_ComputeScalarValue.h
Salome HOME
NRI : First integration.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ComputeScalarValue.h
diff --git a/src/SMESHGUI/SMESHGUI_ComputeScalarValue.h b/src/SMESHGUI/SMESHGUI_ComputeScalarValue.h
new file mode 100644 (file)
index 0000000..25d05e6
--- /dev/null
@@ -0,0 +1,26 @@
+//  File      : SMESHGUI_ComputeScalarValue.h
+//  Created   : Mon Jun 24 14:06:00 2002
+//  Author    : Nicolas REJNERI
+
+//  Project   : SALOME
+//  Module    : SMESH
+//  Copyright : Open CASCADE 2002
+//  $Header$
+
+#ifndef SMESHGUI_CONTROLALGORITHMS_H
+#define SMESHGUI_CONTROLALGORITHMS_H
+
+#include <vtkCell.h> 
+
+class SMESHGUI_ComputeScalarValue {
+ public:
+  static double LengthEdges(vtkCell* theCell);
+  static double AreaElements(vtkCell* theCell);
+  static double Taper(vtkCell* theCell);
+  static double AspectRatio(vtkCell* theCell);
+  static double MinimumAngle(vtkCell* theCell);
+  static double Skew(vtkCell* theCell);
+  static double Warp(vtkCell* theCell);
+};
+
+#endif