Salome HOME
Updated copyright comment
[modules/shaper.git] / src / SketchAPI / SketchAPI_Projection.cpp
index 7a074c020fad3fb610c79936fb0aaa045ac9213d..6fc8369d66f4ac6ac34e14bf505d31d341cbd98e 100644 (file)
@@ -1,19 +1,39 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-// Name   : SketchAPI_Projection.cpp
-// Purpose:
+// Copyright (C) 2014-2024  CEA, EDF
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-// History:
-// 16/06/16 - Sergey POKHODENKO - Creation of the file
 
-//--------------------------------------------------------------------------------------
 #include "SketchAPI_Projection.h"
 
 #include <SketchPlugin_Line.h>
+#include <SketchPlugin_BSpline.h>
+#include <SketchPlugin_BSplinePeriodic.h>
 #include <SketchPlugin_Circle.h>
+#include <SketchPlugin_Ellipse.h>
+#include <SketchPlugin_EllipticArc.h>
+#include <SketchPlugin_Point.h>
 
-#include <SketchAPI_Line.h>
-#include <SketchAPI_Circle.h>
 #include <SketchAPI_Arc.h>
+#include <SketchAPI_BSpline.h>
+#include <SketchAPI_Circle.h>
+#include <SketchAPI_Ellipse.h>
+#include <SketchAPI_EllipticArc.h>
+#include <SketchAPI_Line.h>
+#include <SketchAPI_Point.h>
 
 #include <ModelHighAPI_Dumper.h>
 #include <ModelHighAPI_Selection.h>
@@ -36,16 +56,6 @@ SketchAPI_Projection::SketchAPI_Projection(
   }
 }
 
-SketchAPI_Projection::SketchAPI_Projection(
-    const std::shared_ptr<ModelAPI_Feature> & theFeature,
-    const std::string & theExternalName)
-: SketchAPI_SketchEntity(theFeature)
-{
-  if (initialize()) {
-    setByExternalName(theExternalName);
-  }
-}
-
 SketchAPI_Projection::~SketchAPI_Projection()
 {
 
@@ -59,10 +69,18 @@ void SketchAPI_Projection::setExternalFeature(const ModelHighAPI_Selection & the
   execute(true);
 }
 
-void SketchAPI_Projection::setByExternalName(const std::string& theExternalName)
+void SketchAPI_Projection::setIncludeToResult(bool theKeepResult)
 {
-  fillAttribute(ModelHighAPI_Selection("EDGE", theExternalName), external());
+  fillAttribute(theKeepResult, includeToResult());
+  execute(true);
+}
 
+void SketchAPI_Projection::setKeepReferenceToOriginal(bool theKeepRefToOriginal)
+{
+  // the Fixed constraint should be assigned explicitly
+  fillAttribute(false, feature()->boolean(SketchPlugin_Projection::MAKE_FIXED()));
+  fillAttribute(theKeepRefToOriginal ? "true" : "false",
+                feature()->string(SketchPlugin_Projection::KEEP_REFERENCE_ID()));
   execute(true);
 }
 
@@ -77,11 +95,22 @@ std::shared_ptr<SketchAPI_SketchEntity> SketchAPI_Projection::createdFeature() c
     return anEntity;
   }
 
-  aProjectedFeature->getKind() == SketchPlugin_Line::ID() ?
-    anEntity.reset(new SketchAPI_Line(aProjectedFeature)) :
-    aProjectedFeature->getKind() == SketchPlugin_Circle::ID() ?
-      anEntity.reset(new SketchAPI_Circle(aProjectedFeature)) :
-      anEntity.reset(new SketchAPI_Arc(aProjectedFeature));
+  if (aProjectedFeature->getKind() == SketchPlugin_Line::ID())
+    anEntity.reset(new SketchAPI_Line(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_Circle::ID())
+    anEntity.reset(new SketchAPI_Circle(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_Arc::ID())
+    anEntity.reset(new SketchAPI_Arc(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_Ellipse::ID())
+    anEntity.reset(new SketchAPI_Ellipse(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_EllipticArc::ID())
+    anEntity.reset(new SketchAPI_EllipticArc(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_BSpline::ID())
+    anEntity.reset(new SketchAPI_BSpline(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_BSplinePeriodic::ID())
+    anEntity.reset(new SketchAPI_BSplinePeriodic(aProjectedFeature));
+  else if (aProjectedFeature->getKind() == SketchPlugin_Point::ID())
+    anEntity.reset(new SketchAPI_Point(aProjectedFeature));
 
   return anEntity;
 }
@@ -94,7 +123,9 @@ void SketchAPI_Projection::dump(ModelHighAPI_Dumper& theDumper) const
   const std::string& aSketchName = theDumper.parentName(aBase);
 
   AttributeSelectionPtr anExternal = externalFeature();
-  theDumper << aBase << " = " << aSketchName << ".addProjection(" << anExternal << ")" << std::endl;
+  AttributeBooleanPtr isIncludeToRes = includeToResult();
+  theDumper << aBase << " = " << aSketchName << ".addProjection("
+            << anExternal << ", " << isIncludeToRes << ")" << std::endl;
   // dump "auxiliary" flag if necessary
   SketchAPI_SketchEntity::dump(theDumper);