Salome HOME
Coding style (fix too long line)
[modules/shaper.git] / src / ModuleBase / ModuleBase_ResultPrs.h
index a93089e98dbca8b8c5e09686d4e5469410747554..aba95061e1c4ca66e0cb734c1871389a8fb2d8c5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2021  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -119,22 +119,7 @@ public:
   /// Returns True if the original shape is substituted by a corresponded shell
   Standard_EXPORT bool isSubstituted() const { return myIsSubstituted; }
 
-  /// Set number of Iso-lines
-  /// \param theU a number of U Iso-lines
-  /// \param theV a number of V Iso-lines
-  Standard_EXPORT void setIsolinesNumber(int theU, int theV) {
-    myUIsoAspect->SetNumber(theU); myVIsoAspect->SetNumber(theV);
-  }
-
-  /// Returns number of U Iso-lines
-  Standard_EXPORT int UIsoLines() const {
-    return myUIsoAspect->Number();
-  }
-
-  /// Returns number of V Iso-lines
-  Standard_EXPORT int VIsoLines() const {
-    return myVIsoAspect->Number();
-  }
+  Standard_EXPORT void updateIsoLines();
 
   DEFINE_STANDARD_RTTIEXT(ModuleBase_ResultPrs, ViewerData_AISShape)