Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_BSplinePeriodic.h
index 80e6bfaec47c2b37cd371e09976d1f9802179b37..2b33a2fde0d8def4386580159f20be8649994d40 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2019-2020  CEA/DEN, EDF R&D
+// Copyright (C) 2019-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #ifndef SketchPlugin_BSplinePeriodic_H_
 #define SketchPlugin_BSplinePeriodic_H_
 
-#include <SketchPlugin.h>
-#include <SketchPlugin_SketchEntity.h>
+#include <SketchPlugin_BSplineBase.h>
 
 /**\class SketchPlugin_BSplinePeriodic
  * \ingroup Plugins
  * \brief Feature for creation of the periodic B-spline curve in the sketch.
  */
-class SketchPlugin_BSplinePeriodic : public SketchPlugin_SketchEntity
+class SketchPlugin_BSplinePeriodic : public SketchPlugin_BSplineBase
 {
 public:
-  /// Ellipse feature kind
+  /// B-spline feature kind
   inline static const std::string& ID()
   {
     static const std::string ID("SketchBSplinePeriodic");
     return ID;
   }
 
-  /// list of B-spline poles
-  inline static const std::string& POLES_ID()
-  {
-    static const std::string ID("poles");
-    return ID;
-  }
-
-  /// list of B-spline weights
-  inline static const std::string& WEIGHTS_ID()
-  {
-    static const std::string ID("weights");
-    return ID;
-  }
-
-  /// attribute to store the degree of B-spline
-  inline static const std::string& DEGREE_ID()
-  {
-    static const std::string ID("degree");
-    return ID;
-  }
-
-  /// list of B-spline knots
-  inline static const std::string& KNOTS_ID()
-  {
-    static const std::string ID("knots");
-    return ID;
-  }
-
-  /// list of B-spline multiplicities
-  inline static const std::string& MULTS_ID()
-  {
-    static const std::string ID("multiplicities");
-    return ID;
-  }
-
   /// Returns the kind of a feature
   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
   {
@@ -79,21 +43,11 @@ public:
     return MY_KIND;
   }
 
-  /// Returns true is sketch element is under the rigid constraint
-  SKETCHPLUGIN_EXPORT virtual bool isFixed();
-
-  /// Called on change of any argument-attribute of this object
-  SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
-
-  /// Creates a new part document if needed
-  SKETCHPLUGIN_EXPORT virtual void execute();
-
   /// Use plugin manager for features creation
   SketchPlugin_BSplinePeriodic();
 
 protected:
-  /// \brief Initializes attributes of derived class.
-  virtual void initDerivedClassAttributes();
+  virtual bool isPeriodic() const { return true; }
 };
 
 #endif