1 // Copyright (C) 2007-2010 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.
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_MarkerDriver.hxx>
26 #include <GEOMImpl_IMarker.hxx>
27 #include <GEOMImpl_Types.hxx>
28 #include <GEOM_Function.hxx>
29 #include <GEOMImpl_IMeasureOperations.hxx>
31 #include <BRepBuilderAPI_MakeFace.hxx>
32 #include <BRep_Tool.hxx>
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS_Edge.hxx>
38 #include <TopoDS_Vertex.hxx>
41 #include <GC_MakePlane.hxx>
42 #include <Geom_Surface.hxx>
44 #include <Precision.hxx>
50 #include <Standard_ConstructionError.hxx>
52 //=======================================================================
55 //=======================================================================
56 const Standard_GUID& GEOMImpl_MarkerDriver::GetID()
58 static Standard_GUID aMarkerDriver("FF1BBB07-5D14-4df2-980B-3A668264EA16");
63 //=======================================================================
64 //function : GEOMImpl_MarkerDriver
66 //=======================================================================
67 GEOMImpl_MarkerDriver::GEOMImpl_MarkerDriver()
71 //=======================================================================
74 //=======================================================================
75 Standard_Integer GEOMImpl_MarkerDriver::Execute(TFunction_Logbook& log) const
77 if (Label().IsNull()) return 0;
78 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
80 GEOMImpl_IMarker aPI (aFunction);
81 Standard_Integer aType = aFunction->GetType();
85 if (aType == MARKER_CS) {
89 aPI.GetOrigin(OX, OY, OZ);
90 aPI.GetXDir(XDX, XDY, XDZ);
91 aPI.GetYDir(YDX, YDY, YDZ);
93 gp_Pnt aPO (OX, OY, OZ);
94 gp_Vec aVX (XDX, XDY, XDZ);
95 gp_Vec aVY (YDX, YDY, YDZ);
96 Standard_Real aTol = Precision::Confusion();
97 if (aVX.Magnitude() < aTol ||
98 aVY.Magnitude() < aTol ||
99 aVX.IsParallel(aVY, Precision::Angular())) {
100 Standard_ConstructionError::Raise("Degenerated or parallel directions given");
103 gp_Vec aN = aVX ^ aVY;
104 gp_Ax3 anA (aPO, aN, aVX);
107 double aTrimSize = 100.0;
108 aShape = BRepBuilderAPI_MakeFace(aPln, -aTrimSize, +aTrimSize, -aTrimSize, +aTrimSize).Shape();
109 } else if (aType == MARKER_SHAPE) {
110 Handle(GEOM_Function) aRefShape = aPI.GetShape();
111 TopoDS_Shape aSh = aRefShape->GetValue();
112 gp_Ax3 anAx3 = GEOMImpl_IMeasureOperations::GetPosition(aSh);
115 double aTrimSize = 100.0;
116 aShape = BRepBuilderAPI_MakeFace(aPln, -aTrimSize, +aTrimSize, -aTrimSize, +aTrimSize).Shape();
117 } else if (aType == MARKER_PNT2VEC) {
118 Handle(GEOM_Function) aRefOrigin = aPI.GetOrigin();
119 Handle(GEOM_Function) aRefXVec = aPI.GetXVec();
120 Handle(GEOM_Function) aRefYVec = aPI.GetYVec();
121 TopoDS_Shape aShapeOrigin = aRefOrigin->GetValue();
122 TopoDS_Shape aShapeXVec = aRefXVec->GetValue();
123 TopoDS_Shape aShapeYVec = aRefYVec->GetValue();
124 if (aShapeOrigin.ShapeType() != TopAbs_VERTEX || aShapeOrigin.IsNull()) return 0;
125 if (aShapeXVec.ShapeType() != TopAbs_EDGE || aShapeXVec.IsNull()) return 0;
126 if (aShapeYVec.ShapeType() != TopAbs_EDGE || aShapeYVec.IsNull()) return 0;
128 gp_Pnt aPO = BRep_Tool::Pnt( TopoDS::Vertex( aShapeOrigin ) );
130 gp_Pnt aPX1 = BRep_Tool::Pnt( TopExp::FirstVertex( TopoDS::Edge( aShapeXVec ) ) );
131 gp_Pnt aPX2 = BRep_Tool::Pnt( TopExp::LastVertex( TopoDS::Edge( aShapeXVec ) ) );
132 gp_Vec aVX( aPX1, aPX2 );
134 gp_Pnt aPY1 = BRep_Tool::Pnt( TopExp::FirstVertex( TopoDS::Edge( aShapeYVec ) ) );
135 gp_Pnt aPY2 = BRep_Tool::Pnt( TopExp::LastVertex( TopoDS::Edge( aShapeYVec ) ) );
136 gp_Vec aVY( aPY1, aPY2 );
138 if (aVX.Magnitude() < gp::Resolution() || aVY.Magnitude() < gp::Resolution())
139 Standard_ConstructionError::Raise
140 ("Local CS creation aborted: vector of zero length is given");
142 if ( aVX.IsParallel(aVY, Precision::Angular()))
143 Standard_ConstructionError::Raise("Parallel Vectors given");
145 gp_Vec aN = aVX ^ aVY;
146 gp_Ax3 anA (aPO, aN, aVX);
149 double aTrimSize = 100.0;
150 aShape = BRepBuilderAPI_MakeFace(aPln, -aTrimSize, +aTrimSize, -aTrimSize, +aTrimSize).Shape();
154 if (aShape.IsNull()) return 0;
156 aFunction->SetValue(aShape);
158 log.SetTouched(Label());
164 //=======================================================================
165 //function : GEOMImpl_MarkerDriver_Type_
167 //=======================================================================
168 Standard_EXPORT Handle_Standard_Type& GEOMImpl_MarkerDriver_Type_()
171 static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
172 if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
173 static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
174 if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
175 static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
176 if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
179 static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
180 static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_MarkerDriver",
181 sizeof(GEOMImpl_MarkerDriver),
183 (Standard_Address)_Ancestors,
184 (Standard_Address)NULL);
189 //=======================================================================
190 //function : DownCast
192 //=======================================================================
193 const Handle(GEOMImpl_MarkerDriver) Handle(GEOMImpl_MarkerDriver)::DownCast
194 (const Handle(Standard_Transient)& AnObject)
196 Handle(GEOMImpl_MarkerDriver) _anOtherObject;
198 if (!AnObject.IsNull()) {
199 if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_MarkerDriver))) {
200 _anOtherObject = Handle(GEOMImpl_MarkerDriver)((Handle(GEOMImpl_MarkerDriver)&)AnObject);
204 return _anOtherObject ;