1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include <Standard_Stream.hxx>
23 #include <GEOMImpl_PrismDriver.hxx>
24 #include <GEOMImpl_IPrism.hxx>
25 #include <GEOMImpl_Types.hxx>
26 #include <GEOM_Function.hxx>
28 #include <BRepPrimAPI_MakePrism.hxx>
29 #include <BRep_Tool.hxx>
31 #include <TopoDS_Shape.hxx>
32 #include <TopoDS_Edge.hxx>
33 #include <TopoDS_Vertex.hxx>
37 #include <Precision.hxx>
39 #include <Standard_ConstructionError.hxx>
41 //=======================================================================
44 //=======================================================================
45 const Standard_GUID& GEOMImpl_PrismDriver::GetID()
47 static Standard_GUID aPrismDriver("FF1BBB17-5D14-4df2-980B-3A668264EA16");
52 //=======================================================================
53 //function : GEOMImpl_PrismDriver
55 //=======================================================================
56 GEOMImpl_PrismDriver::GEOMImpl_PrismDriver()
60 //=======================================================================
63 //=======================================================================
64 Standard_Integer GEOMImpl_PrismDriver::Execute(TFunction_Logbook& log) const
66 if (Label().IsNull()) return 0;
67 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
69 GEOMImpl_IPrism aCI (aFunction);
70 Standard_Integer aType = aFunction->GetType();
74 if (aType == PRISM_BASE_VEC_H) {
75 Handle(GEOM_Function) aRefBase = aCI.GetBase();
76 Handle(GEOM_Function) aRefVector = aCI.GetVector();
77 TopoDS_Shape aShapeBase = aRefBase->GetValue();
78 TopoDS_Shape aShapeVec = aRefVector->GetValue();
79 if (aShapeVec.ShapeType() == TopAbs_EDGE) {
80 TopoDS_Edge anE = TopoDS::Edge(aShapeVec);
82 TopExp::Vertices(anE, V1, V2, Standard_True);
83 if (!V1.IsNull() && !V2.IsNull()) {
84 gp_Vec aV (BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
85 if (Abs(aCI.GetH()) < Precision::Confusion()) {
86 Standard_ConstructionError::Raise("Absolute value of prism height is too small");
88 if (aV.Magnitude() > Precision::Confusion()) {
90 aShape = BRepPrimAPI_MakePrism(aShapeBase, aV * aCI.GetH(), Standard_False).Shape();
94 } else if (aType == PRISM_BASE_TWO_PNT) {
95 Handle(GEOM_Function) aRefBase = aCI.GetBase();
96 Handle(GEOM_Function) aRefPnt1 = aCI.GetFirstPoint();
97 Handle(GEOM_Function) aRefPnt2 = aCI.GetLastPoint();
98 TopoDS_Shape aShapeBase = aRefBase->GetValue();
99 TopoDS_Shape aShapePnt1 = aRefPnt1->GetValue();
100 TopoDS_Shape aShapePnt2 = aRefPnt2->GetValue();
101 if (aShapePnt1.ShapeType() == TopAbs_VERTEX &&
102 aShapePnt2.ShapeType() == TopAbs_VERTEX) {
103 TopoDS_Vertex V1 = TopoDS::Vertex(aShapePnt1);
104 TopoDS_Vertex V2 = TopoDS::Vertex(aShapePnt2);
105 if (!V1.IsNull() && !V2.IsNull()) {
106 gp_Vec aV (BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
107 if (aV.Magnitude() > gp::Resolution()) {
108 aShape = BRepPrimAPI_MakePrism(aShapeBase, aV, Standard_False).Shape();
115 if (aShape.IsNull()) return 0;
117 aFunction->SetValue(aShape);
119 log.SetTouched(Label());
125 //=======================================================================
126 //function : GEOMImpl_PrismDriver_Type_
128 //=======================================================================
129 Standard_EXPORT Handle_Standard_Type& GEOMImpl_PrismDriver_Type_()
132 static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
133 if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
134 static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
135 if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
136 static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
137 if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
140 static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
141 static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_PrismDriver",
142 sizeof(GEOMImpl_PrismDriver),
144 (Standard_Address)_Ancestors,
145 (Standard_Address)NULL);
150 //=======================================================================
151 //function : DownCast
153 //=======================================================================
154 const Handle(GEOMImpl_PrismDriver) Handle(GEOMImpl_PrismDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
156 Handle(GEOMImpl_PrismDriver) _anOtherObject;
158 if (!AnObject.IsNull()) {
159 if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_PrismDriver))) {
160 _anOtherObject = Handle(GEOMImpl_PrismDriver)((Handle(GEOMImpl_PrismDriver)&)AnObject);
164 return _anOtherObject ;