Salome HOME
Rework Sketch Rectangle feature.
[modules/shaper.git] / src / SketchAPI / SketchAPI_Rectangle.cpp
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SketchAPI_Rectangle.h"
21 //--------------------------------------------------------------------------------------
22 #include <GeomAPI_Pnt2d.h>
23 //--------------------------------------------------------------------------------------
24 #include <ModelHighAPI_Selection.h>
25 #include <ModelHighAPI_Tools.h>
26 #include <ModelHighAPI_Dumper.h>
27
28 //--------------------------------------------------------------------------------------
29 SketchAPI_Rectangle::SketchAPI_Rectangle(
30     const std::shared_ptr<ModelAPI_Feature> & theFeature)
31   : SketchAPI_SketchEntity(theFeature)
32 {
33   initialize();
34 }
35
36 SketchAPI_Rectangle::SketchAPI_Rectangle(const std::shared_ptr<ModelAPI_Feature> & theFeature,
37                                          double theX1, double theY1, double theX2, double theY2)
38   : SketchAPI_SketchEntity(theFeature)
39 {
40   if (initialize()) {
41     setByCoordinates(theX1, theY1, theX2, theY2);
42   }
43 }
44
45 SketchAPI_Rectangle::SketchAPI_Rectangle(const std::shared_ptr<ModelAPI_Feature> & theFeature,
46                                          const std::shared_ptr<GeomAPI_Pnt2d> & theFirstPoint,
47                                          const std::shared_ptr<GeomAPI_Pnt2d> & theEndPoint)
48   : SketchAPI_SketchEntity(theFeature)
49 {
50   if (initialize()) {
51     setByPoints(theFirstPoint, theEndPoint);
52   }
53 }
54
55 SketchAPI_Rectangle::~SketchAPI_Rectangle()
56 {
57 }
58
59 //--------------------------------------------------------------------------------------
60 void SketchAPI_Rectangle::setByCoordinates(
61     double theX1, double theY1, double theX2, double theY2)
62 {
63   fillAttribute("RectangleTypeByCorners", type());
64   fillAttribute(startPoint(), theX1, theY1);
65   fillAttribute(endPoint(), theX2, theY2);
66   execute();
67 }
68
69 void SketchAPI_Rectangle::setByPoints(const std::shared_ptr<GeomAPI_Pnt2d> & theFirstPoint,
70                                       const std::shared_ptr<GeomAPI_Pnt2d> & theSecondPoint)
71 {
72   fillAttribute("RectangleTypeByCorners", type());
73   fillAttribute(theFirstPoint, startPoint());
74   fillAttribute(theSecondPoint, endPoint());
75   execute();
76 }
77
78 //--------------------------------------------------------------------------------------
79
80 std::list<std::shared_ptr<SketchAPI_SketchEntity> > SketchAPI_Rectangle::lines() const
81 {
82   std::list<FeaturePtr> aFeatures;
83   std::list<ObjectPtr> aList = linesList()->list();
84   std::list<ObjectPtr>::const_iterator anIt = aList.begin();
85   for (; anIt != aList.end(); ++anIt)
86     aFeatures.push_back(ModelAPI_Feature::feature(*anIt));
87   return SketchAPI_SketchEntity::wrap(aFeatures);
88 }