RelativePath=".\HYDROData_Polyline.cxx"
>
</File>
+ <File
+ RelativePath=".\HYDROData_Tool.cxx"
+ >
+ </File>
<File
RelativePath=".\HYDROData_VisualState.cxx"
>
RelativePath=".\HYDROData_Polyline.h"
>
</File>
+ <File
+ RelativePath=".\HYDROData_Tool.h"
+ >
+ </File>
<File
RelativePath=".\HYDROData_VisualState.h"
>
--- /dev/null
+
+#ifndef HYDROData_Tool_HeaderFile
+#define HYDROData_Tool_HeaderFile
+
+#include <Precision.hxx>
+
+
+
+class HYDROData_Tool {
+
+public:
+
+
+};
+
+inline bool ValuesEquals( const double& theFirst, const double& theSecond )
+{
+ return theFirst > ( theSecond - Precision::Confusion() ) &&
+ theFirst < ( theSecond + Precision::Confusion() );
+}
+
+inline bool ValuesMoreEquals( const double& theFirst, const double& theSecond )
+{
+ return theFirst >= theSecond || ValuesEquals( theFirst, theSecond );
+}
+
+inline bool ValuesLessEquals( const double& theFirst, const double& theSecond )
+{
+ return theFirst <= theSecond || ValuesEquals( theFirst, theSecond );
+}
+
+
+
+
+#endif
+
+