Salome HOME
Correct misprint
[modules/shaper.git] / src / SketchAPI / SketchAPI_SketchEntity.cpp
index f6cfdc17a50c1c7b4bca3dbd783ef4c99c8f8278..1989dfa6b467481832c4ffcd5df67fb6a52eff70 100644 (file)
@@ -1,14 +1,38 @@
-// Name   : SketchAPI_SketchEntity.cpp
-// Purpose: 
+// Copyright (C) 2014-2017  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
+// 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<mailto:webmaster.salome@opencascade.com>
 //
-// History:
-// 07/06/16 - Sergey POKHODENKO - Creation of the file
 
-//--------------------------------------------------------------------------------------
 #include "SketchAPI_SketchEntity.h"
+#include <SketchAPI_Arc.h>
+#include <SketchAPI_Circle.h>
+#include <SketchAPI_IntersectionPoint.h>
+#include <SketchAPI_Line.h>
+#include <SketchAPI_Point.h>
 //--------------------------------------------------------------------------------------
 #include <ModelHighAPI_Dumper.h>
 #include <ModelHighAPI_Tools.h>
+
+#include <SketchPlugin_Arc.h>
+#include <SketchPlugin_Circle.h>
+#include <SketchPlugin_IntersectionPoint.h>
+#include <SketchPlugin_Line.h>
+#include <SketchPlugin_Point.h>
 //--------------------------------------------------------------------------------------
 SketchAPI_SketchEntity::SketchAPI_SketchEntity(
     const std::shared_ptr<ModelAPI_Feature> & theFeature)
@@ -60,3 +84,24 @@ bool SketchAPI_SketchEntity::isCopy() const
   AttributeBooleanPtr isCopy = feature()->boolean(SketchPlugin_SketchEntity::COPY_ID());
   return isCopy.get() && isCopy->value();
 }
+
+std::list<std::shared_ptr<SketchAPI_SketchEntity> >
+SketchAPI_SketchEntity::wrap(const std::list<std::shared_ptr<ModelAPI_Feature> >& theFeatures)
+{
+  std::list<std::shared_ptr<SketchAPI_SketchEntity> > aResult;
+  std::list<std::shared_ptr<ModelAPI_Feature> >::const_iterator anIt = theFeatures.begin();
+  for (; anIt != theFeatures.end(); ++anIt) {
+    if ((*anIt)->getKind() == SketchPlugin_Line::ID())
+      aResult.push_back(std::shared_ptr<SketchAPI_SketchEntity>(new SketchAPI_Line(*anIt)));
+    else if ((*anIt)->getKind() == SketchPlugin_Arc::ID())
+      aResult.push_back(std::shared_ptr<SketchAPI_SketchEntity>(new SketchAPI_Arc(*anIt)));
+    else if ((*anIt)->getKind() == SketchPlugin_Circle::ID())
+      aResult.push_back(std::shared_ptr<SketchAPI_SketchEntity>(new SketchAPI_Circle(*anIt)));
+    else if ((*anIt)->getKind() == SketchPlugin_Point::ID())
+      aResult.push_back(std::shared_ptr<SketchAPI_SketchEntity>(new SketchAPI_Point(*anIt)));
+    else if ((*anIt)->getKind() == SketchPlugin_IntersectionPoint::ID())
+      aResult.push_back(std::shared_ptr<SketchAPI_SketchEntity>(
+                                                    new SketchAPI_IntersectionPoint(*anIt)));
+  }
+  return aResult;
+}