1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include <Standard_Stream.hxx>
25 #include <GEOMImpl_ArcDriver.hxx>
26 #include <GEOMImpl_IArc.hxx>
27 #include <GEOMImpl_Types.hxx>
28 #include <GEOM_Function.hxx>
30 #include <BRepBuilderAPI_MakeEdge.hxx>
31 #include <BRep_Tool.hxx>
33 #include <TopoDS_Shape.hxx>
34 #include <TopoDS_Edge.hxx>
35 #include <TopoDS_Vertex.hxx>
39 #include <GC_MakeArcOfCircle.hxx>
40 #include <GC_MakeCircle.hxx>
41 #include <GC_MakeArcOfEllipse.hxx>
42 #include <GC_MakeEllipse.hxx>
43 #include <Standard_ConstructionError.hxx>
44 #include <Precision.hxx>
47 #include <gp_Circ.hxx>
48 #include <gp_Elips.hxx>
49 #include <Geom_Circle.hxx>
50 #include <Geom_Ellipse.hxx>
52 #include "utilities.h"
54 //=======================================================================
57 //=======================================================================
58 const Standard_GUID& GEOMImpl_ArcDriver::GetID()
60 static Standard_GUID aArcDriver("FF1BBB35-5D14-4df2-980B-3A668264EA16");
65 //=======================================================================
66 //function : GEOMImpl_ArcDriver
68 //=======================================================================
69 GEOMImpl_ArcDriver::GEOMImpl_ArcDriver()
73 //=======================================================================
76 //=======================================================================
77 Standard_Integer GEOMImpl_ArcDriver::Execute(LOGBOOK& log) const
79 if (Label().IsNull()) return 0;
80 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
82 GEOMImpl_IArc aCI (aFunction);
83 Standard_Integer aType = aFunction->GetType();
86 if ((aType == CIRC_ARC_THREE_PNT) || (aType == CIRC_ARC_CENTER) || (aType == ELLIPSE_ARC_CENTER_TWO_PNT))
88 Handle(GEOM_Function) aRefPoint1 = aCI.GetPoint1();
89 Handle(GEOM_Function) aRefPoint2 = aCI.GetPoint2();
90 Handle(GEOM_Function) aRefPoint3 = aCI.GetPoint3();
92 TopoDS_Shape aShapePnt1 = aRefPoint1->GetValue();
93 TopoDS_Shape aShapePnt2 = aRefPoint2->GetValue();
94 TopoDS_Shape aShapePnt3 = aRefPoint3->GetValue();
96 if (aShapePnt1.ShapeType() == TopAbs_VERTEX &&
97 aShapePnt2.ShapeType() == TopAbs_VERTEX &&
98 aShapePnt3.ShapeType() == TopAbs_VERTEX)
100 gp_Pnt aP1 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt1));
101 gp_Pnt aP2 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt2));
102 gp_Pnt aP3 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt3));
104 if (aP1.Distance(aP2) < gp::Resolution() ||
105 aP1.Distance(aP3) < gp::Resolution() ||
106 aP2.Distance(aP3) < gp::Resolution())
107 Standard_ConstructionError::Raise("Arc creation aborted: coincident points given");
109 if (gp_Vec(aP1, aP2).IsParallel(gp_Vec(aP1, aP3), Precision::Angular()))
110 Standard_ConstructionError::Raise("Arc creation aborted: points lay on one line");
112 if (aType == CIRC_ARC_THREE_PNT)
114 GC_MakeArcOfCircle arc (aP1, aP2, aP3);
115 aShape = BRepBuilderAPI_MakeEdge(arc.Value()).Edge();
116 } else if ( aType == CIRC_ARC_CENTER ) { // CIRC_ARC_CENTER
117 Standard_Boolean sense = aCI.GetSense();
119 Standard_Real aRad = aP1.Distance(aP2);
120 gp_Vec aV1 (aP1, aP2);
121 gp_Vec aV2 (aP1, aP3);
122 gp_Vec aN = aV1 ^ aV2;
127 GC_MakeCircle circ (aP1, aN, aRad);
128 Handle(Geom_Circle) aGeomCirc = circ.Value();
130 GC_MakeArcOfCircle arc (aGeomCirc->Circ(), aP2, aP3, Standard_True);
131 aShape = BRepBuilderAPI_MakeEdge(arc.Value()).Edge();
132 } else if ( aType == ELLIPSE_ARC_CENTER_TWO_PNT ) { // ELLIPSE_ARC_CENTER_TWO_PNT
133 if ( aP1.Distance(aP2) <= aP1.Distance(aP3) ) {
134 // Standard_ConstructionError::Raise("Arc creation aborted: the distance from Center Point to Point 1 needs to be bigger than the distance from Center Point to Point 2");
140 GC_MakeEllipse ellipse (aP2, aP3, aP1);
141 Handle(Geom_Ellipse) aGeomEllipse = ellipse.Value();
143 // gp_Vec aV1 (aP1, aP2);
144 // gp_Vec aV2 (aP1, aP3);
146 // double alpha = fabs(aV1.Angle(aV2));
148 GC_MakeArcOfEllipse arc (aGeomEllipse->Elips(), aP2, aP3, Standard_True);
149 aShape = BRepBuilderAPI_MakeEdge(arc.Value()).Edge();
156 if (aShape.IsNull()) return 0;
158 aFunction->SetValue(aShape);
160 #if OCC_VERSION_MAJOR < 7
161 log.SetTouched(Label());
163 log->SetTouched(Label());
168 //================================================================================
170 * \brief Returns a name of creation operation and names and values of creation parameters
172 //================================================================================
174 bool GEOMImpl_ArcDriver::
175 GetCreationInformation(std::string& theOperationName,
176 std::vector<GEOM_Param>& theParams)
178 if (Label().IsNull()) return 0;
179 Handle(GEOM_Function) function = GEOM_Function::GetFunction(Label());
181 GEOMImpl_IArc aCI( function );
182 Standard_Integer aType = function->GetType();
184 theOperationName = "ARC";
187 case CIRC_ARC_THREE_PNT:
188 AddParam( theParams, "Point 1", aCI.GetPoint1() );
189 AddParam( theParams, "Point 2", aCI.GetPoint2() );
190 AddParam( theParams, "Point 3", aCI.GetPoint3() );
192 case CIRC_ARC_CENTER:
193 AddParam( theParams, "Center Point", aCI.GetPoint1() );
194 AddParam( theParams, "Point Start", aCI.GetPoint2() );
195 AddParam( theParams, "Point End", aCI.GetPoint3() );
196 AddParam( theParams, "Reverse", aCI.GetSense() );
198 case ELLIPSE_ARC_CENTER_TWO_PNT:
199 AddParam( theParams, "Center Point", aCI.GetPoint1() );
200 AddParam( theParams, "Point 1", aCI.GetPoint2() );
201 AddParam( theParams, "Point 2", aCI.GetPoint3() );
210 OCCT_IMPLEMENT_STANDARD_RTTIEXT (GEOMImpl_ArcDriver,GEOM_BaseDriver);