// Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. // Language: C++ // Version: Euclid Designer 2.0 // Purpose: Update AIS object from a TDataXtd_Constraint. // Modified Mon 30 10:15:43 1998 by SZY #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static Standard_Boolean CheckShapesPair(const TopoDS_Shape& , const TopoDS_Shape& ); //ota //======================================================================= //function : static NullifyAIS //purpose : //======================================================================= static void NullifyAIS ( Handle(AIS_InteractiveObject)& anais) { if (anais.IsNull()) return; anais.Nullify(); } //======================================================================= //function : static FindExternalShape //purpose : //======================================================================= static void FindExternalShape(const Handle(TDataXtd_Constraint)& aConst, Standard_Integer& extShape) { extShape = 0; const TDF_Label& L = aConst->Label(); if (!aConst->GetGeometry(1)->Label().IsDescendant(L)) extShape = 1; else if (!aConst->GetGeometry(2)->Label().IsDescendant(L)) extShape = 2; } //======================================================================= //function : static GetGoodShape for planar constraint //purpose : //======================================================================= static void GetGoodShape(TopoDS_Shape& theShape) { switch (theShape.ShapeType()) { case TopAbs_EDGE: case TopAbs_VERTEX: { return; } default: { TopExp_Explorer anExp (theShape,TopAbs_EDGE); if (anExp.More()) { theShape = anExp.Current(); return; } else { anExp.Init (theShape, TopAbs_VERTEX); if (anExp.More()) { theShape = anExp.Current(); } } } } } // Pour le cas ou S est un compound static Standard_Boolean IsFace (const TopoDS_Shape& S) { Standard_Boolean findface = Standard_False; TopExp_Explorer EXP (S,TopAbs_FACE); if (EXP.More()) findface = Standard_True; return findface; } static TopoDS_Face GetFace (const TopoDS_Shape& S) { TopoDS_Face F; TopExp_Explorer EXP (S,TopAbs_FACE); if (EXP.More()) F = TopoDS::Face (EXP.Current()); return F; } static TopoDS_Edge GetEdge (const TopoDS_Shape& S) { TopoDS_Edge E; TopExp_Explorer EXP (S, TopAbs_EDGE); if (EXP.More()) E = TopoDS::Edge (EXP.Current()); return E; } //======================================================================= //Function : ComputeAndTextValue //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeTextAndValue(const Handle(TDataXtd_Constraint)& aConst, Standard_Real& val, TCollection_ExtendedString& txt, const Standard_Boolean anIsAngle ) { Standard_Real outvalue; const Handle(TDataStd_Real)& VAL = aConst->GetValue(); val = VAL->Get(); if(anIsAngle){ outvalue = UnitsAPI::CurrentFromLS(Abs(val),"PLANE ANGLE"); } else { outvalue = UnitsAPI::CurrentFromLS(val,"LENGTH"); } char res[1000]; sprintf(res,"%g",outvalue); txt = TCollection_ExtendedString(res); if (VAL->IsCaptured()) { Handle(TDF_Reference) ref; VAL->Label().FindAttribute(TDF_Reference::GetID(),ref); Handle(TDataStd_Name) name; const TDF_Label& L = ref->Get(); if (ref->Get().FindAttribute(TDataStd_Name::GetID(),name)) { TCollection_ExtendedString fullname; Handle(TDataStd_Name) Fathername; if (L.Father().FindAttribute(TDataStd_Name::GetID(),Fathername)) { fullname = Fathername->Get() + TCollection_ExtendedString(".") + name->Get(); } else fullname = name->Get(); txt = fullname + TCollection_ExtendedString("=") + txt; } } } //======================================================================= //function : UpdateOnlyValue //purpose : //======================================================================= void TPrsStd_ConstraintTools::UpdateOnlyValue(const Handle(TDataXtd_Constraint)& aConst, const Handle(AIS_InteractiveObject)& anAIS) { if (anAIS.IsNull()) return; if (!aConst->IsDimension()) return; Standard_Real val; TCollection_ExtendedString txt; TPrsStd_ConstraintTools:: ComputeTextAndValue(aConst,val,txt,aConst->GetType() == TDataXtd_ANGLE); Handle(PrsDim_Relation) rel = Handle(PrsDim_Relation)::DownCast(anAIS); if (!rel.IsNull()) rel->SetText(txt); } //======================================================================= //function : ComputeDistance //purpose : Build an AIS_LengthDimension. //======================================================================= void TPrsStd_ConstraintTools::ComputeDistance (const Handle(TDataXtd_Constraint)& theConst, Handle(AIS_InteractiveObject)& theAIS) { Standard_Integer aGeomNum = theConst->NbGeometries(); // Dimension is build on one or two shapes. if (aGeomNum < 1 || aGeomNum > 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDistance: 1 or 2 geometries are needed" << std::endl; #endif NullifyAIS(theAIS); return; } TopoDS_Shape aShape1, aShape2; Handle(Geom_Geometry) aGeom3; Standard_Boolean isPlanar (theConst->IsPlanar()); // Get shapes and geometry if (aGeomNum == 1) { GetOneShape (theConst, aShape1); if (aShape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDistance : null shape" << std::endl; #endif NullifyAIS (theAIS); return; } } else //aGeomNum == 2 { GetTwoShapes (theConst, aShape1, aShape2); if (aShape1.IsNull() || aShape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDistance : null shape" << std::endl; #endif NullifyAIS (theAIS); return; } } // Get plane from constraint Handle(Geom_Plane) aPlane; if (isPlanar) { GetGeom (theConst, aGeom3); GetGoodShape (aShape1); if (aGeomNum == 2) { GetGoodShape (aShape2); } aPlane = Handle(Geom_Plane)::DownCast (aGeom3); } // Get custom value Standard_Real aValue; TCollection_ExtendedString aText; ComputeTextAndValue (theConst, aValue, aText,Standard_False); Standard_Boolean isFaces = Standard_False; Standard_Boolean isEdges = Standard_False; Standard_Boolean isEdgeFace = Standard_False; Standard_Boolean isVertices = Standard_False; Standard_Boolean isEdge = Standard_False; Standard_Boolean SaveDrw = Standard_False; Handle(Prs3d_Drawer) aDrawer; Handle(PrsDim_LengthDimension) aDim; if (!theAIS.IsNull()) { aDim = Handle(PrsDim_LengthDimension)::DownCast (theAIS); } // Check shapes for AIS dimension if (aGeomNum == 1) { if (aShape1.ShapeType () != TopAbs_EDGE) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDistance : shape should be edge" << std::endl; #endif NullifyAIS (theAIS); return; } isEdge = Standard_True; } else // nbgeom == 2 { isFaces = IsFace (aShape1) && IsFace (aShape2); isEdges = (aShape1.ShapeType() == TopAbs_EDGE) && (aShape2.ShapeType() == TopAbs_EDGE); isEdgeFace = ((aShape1.ShapeType() == TopAbs_FACE) && (aShape2.ShapeType() == TopAbs_EDGE)) || ((aShape1.ShapeType() == TopAbs_EDGE) && (aShape2.ShapeType() == TopAbs_FACE)); isVertices = (aShape1.ShapeType() == TopAbs_VERTEX) && (aShape2.ShapeType() == TopAbs_VERTEX); if (!isPlanar && !isFaces && !isEdges && !isVertices) { // Search suitable geometry for dimension if (aShape1.ShapeType() == aShape2.ShapeType()) { TopoDS_Vertex aV1, aV2, aV3, aV4; if (aShape1.ShapeType() == TopAbs_WIRE) { TopExp::Vertices (TopoDS::Wire(aShape1), aV1, aV2); TopExp::Vertices (TopoDS::Wire(aShape2), aV3, aV4); } aShape1 = aV1; gp_Pnt aP1 = BRep_Tool::Pnt(aV1); gp_Pnt aP2 = BRep_Tool::Pnt(aV3); gp_Pnt aP3 = BRep_Tool::Pnt (aV4); if (aP1.Distance (aP2) < aP1.Distance (aP3)) { aShape2 = aV3; gp_Ax2 ax2 (aP1, gp_Dir (aP2.XYZ() - aP1.XYZ())); aPlane = new Geom_Plane (aP1, ax2.XDirection()); } else { aShape2 = aV4; gp_Ax2 anAx2 (aP1, gp_Dir (aP3.XYZ() - aP1.XYZ())); aPlane = new Geom_Plane (aP1, anAx2.XDirection()); } } else if (!isEdgeFace) { NullifyAIS (theAIS); return; } } } // Check plane Standard_Boolean isCheckPlane = (aDim.IsNull() && !isFaces) || isPlanar; if ((isVertices || isEdges) && !isPlanar) { gp_Pnt aP1, aP2, aP3; if (isVertices) { aP1 = BRep_Tool::Pnt (TopoDS::Vertex (aShape1)); aP2 = BRep_Tool::Pnt (TopoDS::Vertex (aShape2)); aP3 = gp_Pnt (aP1.Y() - 1.0, aP2.X() + 1.0, 0.0); } if (isEdges) { TopoDS_Vertex aV1, aV2, aV3, aV4; TopExp::Vertices (TopoDS::Edge(aShape1), aV1, aV2); TopExp::Vertices (TopoDS::Edge(aShape2), aV3, aV4); aP1 = BRep_Tool::Pnt (aV1); aP2 = BRep_Tool::Pnt (aV2); aP3 = BRep_Tool::Pnt (aV3); } GC_MakePlane aPlaneMaker (aP1, aP2, aP3); if (aPlaneMaker.IsDone() && !isPlanar) { aPlane = aPlaneMaker.Value(); } } if (isCheckPlane && aPlane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDistance : null plane" << std::endl; #endif NullifyAIS (theAIS); return; } // Update of AIS if (aDim.IsNull()) { if (isEdge) { aDim = new PrsDim_LengthDimension (GetEdge (aShape1), aPlane->Pln()); } else if (isFaces) { aDim = new PrsDim_LengthDimension (GetFace (aShape1), GetFace (aShape2)); } else { aDim = new PrsDim_LengthDimension (aShape1, aShape2, aPlane->Pln()); } if (SaveDrw) { aDim->SetAttributes (aDrawer); } } else { if (isEdge) { aDim->SetMeasuredGeometry (GetEdge(aShape1), aPlane->Pln()); } else { aDim->SetMeasuredShapes (aShape1, aShape2); } aDim->SetCustomValue (aValue); } if (!aPlane.IsNull()) { aDim->SetCustomPlane (aPlane->Pln()); } theAIS = aDim; } //======================================================================= //function : ComputePerpendicular //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputePerpendicular(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputePerpendicular: at leat two constraintes are needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom3; Standard_Boolean is_planar(aConst->IsPlanar()); if (is_planar) GetShapesAndGeom(aConst,shape1,shape2,ageom3); else GetTwoShapes(aConst,shape1,shape2); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputePerpendicular : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); // Update de l'AIS Handle(PrsDim_PerpendicularRelation) ais; if (anAIS.IsNull()) ais = new PrsDim_PerpendicularRelation(shape1,shape2); else { ais = Handle(PrsDim_PerpendicularRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_PerpendicularRelation(shape1,shape2); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); } } if (is_planar) { Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputePerpendicular: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } ais->SetPlane(aplane); } anAIS = ais; } //======================================================================= //function : ComputeParallel //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeParallel(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeParallel: at least 2 constraintes are needed" << std::endl; #endif NullifyAIS(anAIS); return; } if (!aConst->IsPlanar()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeParallel: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst,shape1,shape2,ageom3); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeParallel : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeParallel: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS GetGoodShape(shape1); GetGoodShape(shape2); Handle(PrsDim_ParallelRelation) ais; if (anAIS.IsNull()) ais = new PrsDim_ParallelRelation(shape1,shape2,aplane); else { ais = Handle(PrsDim_ParallelRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_ParallelRelation(shape1,shape2,aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); } } anAIS = ais; } //======================================================================= //function : ComputeSymmetry //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeSymmetry(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 3) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: at least 3 constraintes are needed" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Boolean is_planar(aConst->IsPlanar()); if (!is_planar) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2,shape3 ; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst,shape1,shape2,shape3,ageom3); if (shape1.IsNull() || shape2.IsNull() || shape3.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); GetGoodShape(shape3); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: null plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_SymmetricRelation) ais; if (anAIS.IsNull()) ais = new PrsDim_SymmetricRelation(shape3,shape1,shape2,aplane); else { ais = Handle(PrsDim_SymmetricRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_SymmetricRelation(shape3,shape1,shape2,aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); ais->SetTool(shape3); } } anAIS = ais; } //======================================================================= //function : ComputeMidPoint //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeMidPoint(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 3) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: at least 3 constraints are needed" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Boolean is_planar(aConst->IsPlanar()); if ( !is_planar ) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2,shape3; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst,shape1,shape2,shape3,ageom3); if (shape1.IsNull() || shape2.IsNull() || shape3.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); GetGoodShape(shape3); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeSymmetry: null plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_MidPointRelation) ais; if ( anAIS.IsNull() ) ais = new PrsDim_MidPointRelation(shape3,shape1,shape2,aplane); else { ais = Handle(PrsDim_MidPointRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_MidPointRelation(shape3,shape1,shape2,aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); ais->SetTool(shape3); } } anAIS = ais; } //======================================================================= //function : ComputeTangent //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeTangent (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeTangent: at leat two constraintes are needed" << std::endl; #endif NullifyAIS(anAIS); return; } if (!aConst->IsPlanar()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeTangent: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst,shape1,shape2,ageom3); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeTangent : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeTangent: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_TangentRelation) ais; if (anAIS.IsNull()) { ais = new PrsDim_TangentRelation(shape1,shape2,aplane); ais->SetArrowSize(10000000); // jfa 9/10/2000 } else { ais = Handle(PrsDim_TangentRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_TangentRelation(shape1,shape2,aplane); ais->SetArrowSize(10000000); // jfa 9/10/2000 } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); ais->SetArrowSize(10000000); // jfa 9/10/2000 } } anAIS = ais; } //======================================================================= //function : ComputeAngleForOneFace //purpose : computes AngleDimension for one-conical-face case //======================================================================= void TPrsStd_ConstraintTools::ComputeAngleForOneFace (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { TopoDS_Shape shape; Handle(Geom_Geometry) ageom3; GetOneShape( aConst, shape ); if (shape.IsNull() ) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeAngleForOneFace : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Real val1; TCollection_ExtendedString txt; TPrsStd_ConstraintTools::ComputeTextAndValue (aConst,val1,txt,Standard_True); Handle(PrsDim_AngleDimension) ais; TopoDS_Face face; if (!anAIS.IsNull()) { ais = Handle(PrsDim_AngleDimension)::DownCast(anAIS); if(ais.IsNull()) { face = TopoDS::Face( shape ); ais = new PrsDim_AngleDimension (face); } else { ais->SetMeasuredGeometry(TopoDS::Face( shape )); } } else { face = TopoDS::Face (shape); ais = new PrsDim_AngleDimension (face); } anAIS = ais; } //======================================================================= //function : CheckIsShapeCompound //purpose : //======================================================================= static Standard_Boolean CheckIsShapeCompound(TopoDS_Shape& shape, TopoDS_Face& aFace) { if (shape.ShapeType() == TopAbs_COMPOUND) { TopTools_IndexedMapOfShape aFaceMap; TopExp::MapShapes(shape, TopAbs_FACE, aFaceMap); for(Standard_Integer i = 1;i <= aFaceMap.Extent();i++) { aFace = TopoDS::Face(aFaceMap.FindKey(i)); if(!aFace.IsNull()) { shape = aFace; return (Standard_True); } } } #ifdef OCCT_DEBUG std::cout << "TPrsStd::Compute angle : Shape is not Compound or is Null" <NbGeometries(); if (nbgeom < 2) { if( nbgeom == 1 ) { ComputeAngleForOneFace( aConst, anAIS ); return; } #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeAngle: at least 2 constraints are needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom3; GetShapesAndGeom (aConst,shape1,shape2,ageom3); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeAngle : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Boolean isCurvilinear = Standard_False; if (ageom3.IsNull()) { // on essaie de le calculer TopoDS_Face aFace; if (shape1.ShapeType() == TopAbs_WIRE) { BRepBuilderAPI_MakeFace MkF (TopoDS::Wire(shape1),Standard_True); if (MkF.IsDone()) { aFace = MkF.Face(); shape1 = aFace; } } else if (shape1.ShapeType() == TopAbs_FACE) aFace = TopoDS::Face(shape1); else if(!CheckIsShapeCompound(shape1, aFace)) { #ifdef OCCT_DEBUG std::cout << "Compute angle : Geom type = " << shape1.ShapeType() << " non traite"<IsKind(STANDARD_TYPE(Geom_Plane))) isplan = Standard_True; else if (ageom3->IsKind(STANDARD_TYPE(Geom_Line))) isplan = Standard_False; else { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeAngle: unknown 3rd arg " << std::endl; #endif NullifyAIS(anAIS); return; } } Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue (aConst,val1,txt,Standard_True); Standard_Boolean toCreate (Standard_True); Standard_Boolean isface(shape1.ShapeType()==TopAbs_FACE); Handle(PrsDim_AngleDimension) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_AngleDimension)::DownCast(anAIS); if( ais.IsNull() ) { toCreate = Standard_True; } else toCreate = Standard_False; } Standard_Integer ExtShape(0); if (toCreate) { // Creation de l'AIS if (isplan) { if(!isface) { FindExternalShape(aConst,ExtShape); GetGoodShape(shape1); GetGoodShape(shape2); ais = new PrsDim_AngleDimension (TopoDS::Edge(shape1), TopoDS::Edge(shape2)); } } else { if (isCurvilinear) { ais = new PrsDim_AngleDimension (TopoDS::Face(shape1), TopoDS::Face(shape2)); } else if (isface) { ais = new PrsDim_AngleDimension (TopoDS::Face(shape1), TopoDS::Face(shape2)); } } } else { // Update de l'AIS if (isplan) { GetGoodShape(shape1); GetGoodShape(shape2); } ais->SetMeasuredGeometry (TopoDS::Face (shape1), TopoDS::Face (shape2)); if (isplan) ais->SetCustomPlane (Handle(Geom_Plane)::DownCast (ageom3)->Pln()); else if (!isCurvilinear) { gp_Pln aPlane; aPlane.SetAxis (Handle(Geom_Line)::DownCast (ageom3)->Position()); ais->SetCustomPlane (aPlane); } } anAIS = ais; } //======================================================================= //function : ComputeConcentric //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeConcentric(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) { throw Standard_ProgramError("TPrsStd_ConstraintTools::ComputeConcentric: at least 2 constraintes are needed"); } if (!aConst->IsPlanar()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeConcentric: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst,shape1,shape2,ageom3); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeConcentric : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); //ota : to allow concentric constraint display between vertex and edge if (shape1.ShapeType() != TopAbs_EDGE && shape2.ShapeType() != TopAbs_EDGE) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeConcentric: concentric between two vertexes : NOT DISPLAYED" << std::endl; #endif NullifyAIS(anAIS); return; } Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom3); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeConcentric: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_ConcentricRelation) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_ConcentricRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_ConcentricRelation (shape1,shape2,aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); } } else { ais = new PrsDim_ConcentricRelation (shape1,shape2,aplane); } anAIS = ais; } //======================================================================= //function : ComputeRadius //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeRadius (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRadius: at least one constrainte is needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1 ; GetOneShape (aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRadius: null shape" << std::endl; #endif NullifyAIS(anAIS); return; } // POP on teste si ce n'est pas un compound if (shape1.ShapeType()==TopAbs_COMPOUND || shape1.ShapeType()==TopAbs_COMPSOLID || shape1.ShapeType()==TopAbs_SOLID || shape1.ShapeType()==TopAbs_SHELL ) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRadius: not good shape" << std::endl; #endif NullifyAIS(anAIS); return; } if (IsFace(shape1)) shape1 = GetFace(shape1); Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue(aConst,val1,txt,Standard_False); // Update de l'AIS Standard_Boolean isplanar(aConst->IsPlanar()); if (isplanar) GetGoodShape(shape1); Handle(PrsDim_RadiusDimension) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_RadiusDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_RadiusDimension (shape1); } else { ais->SetMeasuredGeometry(shape1); } } else ais = new PrsDim_RadiusDimension (shape1); if (isplanar) { Handle(Geom_Geometry) ageom2; GetGeom(aConst,ageom2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRadius: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } ais->SetCustomPlane(aplane->Pln()); } anAIS = ais; } // ota -- begin -- //======================================================================= //function : ComputeMinRadius //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeMinRadius (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMinRadius: at least one constrainte is needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1 ; GetOneShape (aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMinradius: null shape" << std::endl; #endif NullifyAIS(anAIS); return; } // POP on teste si ce n'est pas un compound if (shape1.ShapeType()==TopAbs_COMPOUND || shape1.ShapeType()==TopAbs_COMPSOLID || shape1.ShapeType()==TopAbs_SOLID || shape1.ShapeType()==TopAbs_SHELL ) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMinRadius: not good shape" << std::endl; #endif NullifyAIS(anAIS); return; } if (IsFace(shape1)) shape1 = GetFace(shape1); Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue(aConst,val1,txt,Standard_False); // Update de l'AIS Standard_Boolean isplanar(aConst->IsPlanar()); if (isplanar) GetGoodShape(shape1); Handle(PrsDim_MinRadiusDimension) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_MinRadiusDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_MinRadiusDimension (shape1,val1,txt); } else { ais->SetValue(val1); ais->SetFirstShape(shape1); ais->SetText(txt); } } else ais = new PrsDim_MinRadiusDimension (shape1,val1,txt); if (isplanar) { Handle(Geom_Geometry) ageom2; GetGeom(aConst,ageom2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMinRadius: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } ais->SetPlane(aplane); } anAIS = ais; } //======================================================================= //function : ComputeMaxRadius //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeMaxRadius (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMaxRadius: at least one constrainte is needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1 ; GetOneShape (aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMaxradius: null shape" << std::endl; #endif NullifyAIS(anAIS); return; } // POP on teste si ce n'est pas un compound if (shape1.ShapeType()==TopAbs_COMPOUND || shape1.ShapeType()==TopAbs_COMPSOLID || shape1.ShapeType()==TopAbs_SOLID || shape1.ShapeType()==TopAbs_SHELL ) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMaxRadius: not good shape" << std::endl; #endif NullifyAIS(anAIS); return; } if (IsFace(shape1)) shape1 = GetFace(shape1); Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue(aConst,val1,txt,Standard_False); // Update de l'AIS Standard_Boolean isplanar(aConst->IsPlanar()); if (isplanar) GetGoodShape(shape1); Handle(PrsDim_MaxRadiusDimension) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_MaxRadiusDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_MaxRadiusDimension (shape1,val1,txt); } else { ais->SetValue(val1); ais->SetFirstShape(shape1); ais->SetText(txt); } } else ais = new PrsDim_MaxRadiusDimension (shape1,val1,txt); if (isplanar) { Handle(Geom_Geometry) ageom2; GetGeom(aConst,ageom2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeMaxRadius: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } ais->SetPlane(aplane); } anAIS = ais; } //======================================================================= //function : ComputeEqualDistance //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeEqualDistance(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 4) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeEqual: at least four geometries are needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape aShape1, aShape2, aShape3, aShape4; Handle(Geom_Geometry) aGeom; GetShapesAndGeom(aConst, aShape1, aShape2, aShape3, aShape4, aGeom); if (aShape1.IsNull()||aShape2.IsNull()|| aShape3.IsNull()||aShape4.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeEqualDistance : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(aShape1); GetGoodShape(aShape2); GetGoodShape(aShape3); GetGoodShape(aShape4); if (!CheckShapesPair(aShape1, aShape2) || !CheckShapesPair(aShape3, aShape4)){ #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeEqualDistance : at least one pair of shapes is incorrect"<IsPlanar()); Handle(Geom_Plane) aPlane ; if(IsPlanar) aPlane = Handle(Geom_Plane)::DownCast(aGeom) ; if (!IsPlanar || aPlane.IsNull()) { //create the plane #ifdef OCCT_DEBUG std::cout<< "The constraint plane is not assigned "<< std::endl; #endif NullifyAIS(anAIS); return; } //Update AIS Handle(PrsDim_EqualDistanceRelation) ais; if (!anAIS.IsNull()) { { ais = Handle(PrsDim_EqualDistanceRelation)::DownCast(anAIS); if (ais.IsNull()) ais = new PrsDim_EqualDistanceRelation(aShape1, aShape2, aShape3, aShape4, aPlane); else { ais->SetFirstShape(aShape1); ais->SetSecondShape(aShape2); ais->SetShape3(aShape3); ais->SetShape4(aShape4); ais->SetPlane(aPlane); } } } else ais = new PrsDim_EqualDistanceRelation(aShape1, aShape2, aShape3, aShape4, aPlane); anAIS = ais; return; } //====================================================================== // function : CheckShapesPair // purpose : checks the types of two shapes. // If the types aShape1 and aShape2 are EDGE - EDGE, // or EDGE - VERTEX, // or VERTEX - VERTEX, // or CIRCLE - CIRCLE, // or CIRCLE - VERTEX, // then function returns TRUE, otherwise FALSE. //====================================================================== static Standard_Boolean CheckShapesPair(const TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2) { //Check whether the shapes form a correct pair. if (aShape1.ShapeType() == TopAbs_EDGE && aShape2.ShapeType() == TopAbs_EDGE) { BRepAdaptor_Curve aCurve1(TopoDS::Edge(aShape1)); BRepAdaptor_Curve aCurve2(TopoDS::Edge(aShape2)); if (aCurve1.GetType() == GeomAbs_Line && aCurve2.GetType() == GeomAbs_Line) { //Are lines parallel ? gp_Dir aDir1 = aCurve1.Line().Direction(); gp_Dir aDir2 = aCurve2.Line().Direction(); if (!(aDir1.IsParallel(aDir2, Precision::Confusion()))) { #ifdef OCCT_DEBUG std::cout << " Lines are not parallel"<NbGeometries(); if (nbgeom < 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeEqualRadius: at least two geometries are needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1, shape2; Handle(Geom_Geometry) ageom3; GetShapesAndGeom(aConst, shape1, shape2, ageom3); if (shape1.IsNull()||shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeEqualRadius : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } // Update AIS Standard_Boolean IsPlanar(aConst->IsPlanar()); GetGoodShape(shape1); GetGoodShape(shape2); const TopoDS_Edge edge1 = TopoDS::Edge(shape1); const TopoDS_Edge edge2 = TopoDS::Edge(shape2); Handle(Geom_Plane) aplane ; if (IsPlanar) aplane = Handle(Geom_Plane)::DownCast(ageom3) ; if (!IsPlanar || aplane.IsNull()) { // check are the planes of edge1 and edge2 coincident BRepAdaptor_Curve aCurve( edge1 ); Handle( Geom_Curve ) aProjCurve = aCurve.Curve().Curve(); gp_Circ aCircle = (Handle( Geom_Circle )::DownCast( aProjCurve ))->Circ(); gp_Ax3 anAx31(aCircle.Position()); //get the circle axis // get the circle plane Handle(Geom_Plane) aPlane1 = new Geom_Plane (anAx31); aCurve.Initialize(edge2); aProjCurve = aCurve.Curve().Curve(); aCircle = (Handle( Geom_Circle )::DownCast( aProjCurve ))->Circ(); gp_Ax3 anAx32(aCircle.Position()); //get the circle axis // get the circle plane Handle(Geom_Plane) aPlane2 = new Geom_Plane (anAx32); Standard_Real A, B, C ,D1, D2; aPlane1->Coefficients(A, B, C, D1);//Get normalized coefficients aPlane2->Coefficients(A, B, C, D2);//Get normalized coefficients const gp_Dir& aDir1 = anAx31.Direction(); const gp_Dir& aDir2 = anAx32.Direction(); if(Abs(D1 - D2) < Precision::Confusion() && aDir1.IsParallel(aDir2, Precision::Confusion())) aplane = aPlane2; else { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRadiusRelation: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } } Handle(PrsDim_EqualRadiusRelation) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_EqualRadiusRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_EqualRadiusRelation(edge1, edge2, aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); } } else { ais = new PrsDim_EqualRadiusRelation(edge1, edge2, aplane); } anAIS = ais; } //ota -- end -- //======================================================================= //function : ComputeDiameter //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeDiameter(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDiameter: at least one constrainte is needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1 ; GetOneShape(aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDiameter : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue(aConst,val1,txt,Standard_False); // Update de l'AIS Standard_Boolean IsPlanar(aConst->IsPlanar()); if (IsPlanar) GetGoodShape(shape1); Handle(PrsDim_DiameterDimension) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_DiameterDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_DiameterDimension (shape1); } else { ais->SetMeasuredGeometry(shape1); } } else ais = new PrsDim_DiameterDimension (shape1); if (IsPlanar) { Handle(Geom_Geometry) ageom2; GetGeom(aConst,ageom2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeDiameter: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } //ais->SetCustomPlane(aplane); } anAIS = ais; } //======================================================================= //function : ComputeFix //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeFix(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeFix: at least one constrainte is needed" << std::endl; #endif NullifyAIS(anAIS); return; } if (!aConst->IsPlanar()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeFix: must be a planar constraint" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1 ; Handle(Geom_Geometry) ageom2; GetOneShape(aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeFix : null shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGeom(aConst,ageom2); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast(ageom2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeFix: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_FixRelation) ais; if (!anAIS.IsNull()) { ais = Handle(PrsDim_FixRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_FixRelation (shape1,aplane); } else { ais->SetFirstShape(shape1); ais->SetPlane(aplane); } } else ais = new PrsDim_FixRelation (shape1,aplane); anAIS = ais; } //======================================================================= //function : ComputeOffset //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeOffset (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { // Get plane for planar constraint Standard_Boolean is_planar (aConst->IsPlanar()); Handle(Geom_Plane) aplane; if (is_planar) { Handle(Geom_Geometry) ageom; GetGeom (aConst,ageom); aplane = Handle(Geom_Plane)::DownCast (ageom); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeOffset: null plane" << std::endl; #endif NullifyAIS(anAIS); return; } } // Get shapes TopoDS_Shape S1, S2; Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom == 1) { Handle(TNaming_NamedShape) ageom1 = aConst->GetGeometry(1); // c'est une shape qui contient les faces generees par les faces d'origines TNaming_Iterator It (ageom1); if (It.More()) { S1 = It.OldShape(); S2 = It.NewShape(); } } else if (nbgeom == 2) { // Get geometry of the constraint GetTwoShapes (aConst,S1,S2); } if (S1.IsNull() || S2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeOffset: null shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Real val1; TCollection_ExtendedString txt; Handle(PrsDim_LengthDimension) ais; //Handle(Prs3d_Drawer) aDrawer; if (nbgeom == 1) { ComputeTextAndValue (aConst,val1,txt,Standard_False); if (!anAIS.IsNull()) { ais = Handle(PrsDim_LengthDimension)::DownCast(anAIS); } if (S1.ShapeType() == TopAbs_FACE && S2.ShapeType() == TopAbs_FACE) { if (ais.IsNull()) { ais = new PrsDim_LengthDimension (TopoDS::Face(S1),TopoDS::Face(S2)); } else { ais->SetMeasuredShapes (S1, S2); ais->SetCustomValue(val1); } if (is_planar) { ais->SetCustomPlane (aplane->Pln()); } anAIS = ais; return; } else if (S1.ShapeType() == TopAbs_EDGE && S2.ShapeType() == TopAbs_EDGE) { // Find a plane for the dimension TopoDS_Edge OE = TopoDS::Edge(S1); BRepAdaptor_Curve CURVE(OE); if (CURVE.GetType() == GeomAbs_Line) { // Works only with line !! Handle(Geom_Geometry) aGeomGeometry = CURVE.Curve().Curve()->Transformed(CURVE.Trsf()) ; gp_Lin OLin = Handle(Geom_Line)::DownCast (aGeomGeometry)->Lin(); TopoDS_Edge NE = TopoDS::Edge(S2); CURVE.Initialize (NE); aGeomGeometry = CURVE.Curve().Curve()->Transformed(CURVE.Trsf()) ; gp_Lin NLin = Handle(Geom_Line)::DownCast (aGeomGeometry)->Lin(); gp_Dir TDir (NLin.Location().XYZ() - OLin.Location().XYZ()); aplane = new Geom_Plane (NLin.Location(),NLin.Direction()^TDir); if (ais.IsNull()) { ais = new PrsDim_LengthDimension (S1,S2,aplane->Pln()); } else { ais->SetMeasuredShapes (S1, S2); ais->SetCustomValue(val1); ais->SetCustomPlane (aplane->Pln()); } anAIS = ais; return; } else if (CURVE.GetType() == GeomAbs_Circle) { Handle(Geom_Geometry) aGeomGeometry = CURVE.Curve().Curve()->Transformed(CURVE.Trsf()) ; gp_Ax1 ax = Handle(Geom_Circle)::DownCast (aGeomGeometry)->Circ().Axis(); aplane = new Geom_Plane (ax.Location(),ax.Direction()); is_planar = Standard_True; } } } if (!is_planar) { if (S1.ShapeType() == TopAbs_COMPOUND && S2.ShapeType() == TopAbs_COMPOUND) { // Resultat d'un offset - on reconstruit un wire pour determiner un plan TopoDS_Wire w1; BRep_Builder B; B.MakeWire (w1); TopExp_Explorer exp (S1,TopAbs_EDGE); for (;exp.More();exp.Next()) B.Add (w1,exp.Current()); BRepBuilderAPI_MakeFace MkF (w1,Standard_True); if (MkF.IsDone()) { Handle(Geom_Surface) aGeomSurface = BRep_Tool::Surface(MkF.Face()); aplane = Handle(Geom_Plane)::DownCast (aGeomSurface); is_planar = Standard_True; } } } if (is_planar) { ComputeTextAndValue (aConst,val1,txt,Standard_False); TopExp_Explorer EXP1 (S1,TopAbs_VERTEX); S1 = EXP1.Current(); gp_Pnt P = BRep_Tool::Pnt(TopoDS::Vertex(S1)); TopoDS_Vertex nearest; Standard_Real dist(RealLast()); for (TopExp_Explorer EXP2(S2,TopAbs_VERTEX); EXP2.More(); EXP2.Next()) { const TopoDS_Vertex& current = TopoDS::Vertex(EXP2.Current()); gp_Pnt curpnt = BRep_Tool::Pnt(current); Standard_Real curdist = P.SquareDistance(curpnt); if (curdist < dist) { nearest= current; dist = curdist; } } S2 = nearest; ais = Handle(PrsDim_LengthDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_LengthDimension (S1,S2,aplane->Pln()); } else { ais->SetMeasuredShapes (S1, S2); ais->SetCustomValue (val1); ais->SetCustomPlane (aplane->Pln ()); } anAIS = ais; return; } #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeOffset: Case not implemented" << std::endl; #endif NullifyAIS(anAIS); } //======================================================================= //function : ComputePlacement //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputePlacement (const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) throw Standard_ProgramError("TPrsStd_ConstraintTools::ComputePlacement: at leat two constraints are needed"); TopoDS_Shape shape1,shape2 ; GetTwoShapes(aConst,shape1,shape2); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputePlacement: nul shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Real val1=0.0; TCollection_ExtendedString txt= " "; if (aConst->IsDimension()) { ComputeTextAndValue(aConst,val1,txt,Standard_False); } // Update de l'AIS Handle(PrsDim_OffsetDimension) ais; if (anAIS.IsNull()) { ais = new PrsDim_OffsetDimension(GetFace(shape1),GetFace(shape2),val1,txt); ais->SetArrowSize(val1/20.); } else { ais = Handle(PrsDim_OffsetDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_OffsetDimension(GetFace(shape1),GetFace(shape2),val1,txt); ais->SetArrowSize(val1/20.); } else { ais->SetFirstShape(GetFace(shape1)); ais->SetSecondShape(GetFace(shape2)); ais->SetValue(val1); ais->SetText(txt); ais->SetArrowSize(val1/20.); } } if (GetFace(shape1).IsNull() || GetFace(shape2).IsNull()) ais.Nullify(); anAIS = ais; } //======================================================================= //function : ComputeOthers //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeOthers (const Handle(TDataXtd_Constraint)& /*aConst*/, Handle(AIS_InteractiveObject)& /*anAIS*/) { } //======================================================================= //function : GetOneShape //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetOneShape (const Handle(TDataXtd_Constraint)& aConst, TopoDS_Shape& aShape) { const Handle(TNaming_NamedShape)& ageom1 = aConst->GetGeometry(1); if (!ageom1.IsNull()) aShape = TNaming_Tool::CurrentShape(ageom1); } //======================================================================= //function : GetTwoShapes //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetTwoShapes (const Handle(TDataXtd_Constraint)& aConst, TopoDS_Shape& aShape1, TopoDS_Shape& aShape2) { const Handle(TNaming_NamedShape)& ageom1 = aConst->GetGeometry(1); if (!ageom1.IsNull()) aShape1 = TNaming_Tool::CurrentShape(aConst->GetGeometry(1)); const Handle(TNaming_NamedShape)& ageom2 = aConst->GetGeometry(2); if (!ageom2.IsNull()) aShape2 = TNaming_Tool::CurrentShape(aConst->GetGeometry(2)); } //======================================================================= //function : GetShapesAndGeom //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetShapesAndGeom (const Handle(TDataXtd_Constraint)& aConst, TopoDS_Shape& aShape1, TopoDS_Shape& aShape2, Handle(Geom_Geometry)& aGeom) { GetTwoShapes(aConst,aShape1,aShape2); GetGeom(aConst,aGeom); } //======================================================================= //function : GetShapesAndGeom //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetShapesAndGeom (const Handle(TDataXtd_Constraint)& aConst, TopoDS_Shape& aShape1, TopoDS_Shape& aShape2, TopoDS_Shape& aShape3, Handle(Geom_Geometry)& aGeom) { GetTwoShapes(aConst,aShape1,aShape2); const Handle(TNaming_NamedShape)& ageom3 = aConst->GetGeometry(3);//ota: GetGeometry(2) was if (!ageom3.IsNull()) aShape3 = TNaming_Tool::CurrentShape(aConst->GetGeometry(3)); GetGeom(aConst,aGeom); } //======================================================================= //function : GetShapesAndGeom //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetShapesAndGeom (const Handle(TDataXtd_Constraint)& aConst, TopoDS_Shape& aShape1, TopoDS_Shape& aShape2, TopoDS_Shape& aShape3, TopoDS_Shape& aShape4, Handle(Geom_Geometry)& aGeom) { GetTwoShapes(aConst,aShape1, aShape2 ); const Handle(TNaming_NamedShape)& ageom3 = aConst->GetGeometry(3); if (!ageom3.IsNull()) aShape3 = TNaming_Tool::CurrentShape(aConst->GetGeometry(3)); const Handle(TNaming_NamedShape)& ageom4 = aConst->GetGeometry(4); if (!ageom4.IsNull()) aShape4 = TNaming_Tool::CurrentShape(aConst->GetGeometry(4)); GetGeom(aConst,aGeom); } //======================================================================= //function : ComputeCoincident //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeCoincident(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 2) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeCoincident: at leat two constraintes are needed" << std::endl; #endif NullifyAIS(anAIS); return; } if (!aConst->IsPlanar()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeCoincident: must be a planar constraint" << std::endl; #endif anAIS.Nullify() ; return; } TopoDS_Shape shape1,shape2 ; Handle(Geom_Geometry) ageom; GetShapesAndGeom(aConst,shape1,shape2,ageom); Handle(Geom_Plane) aplane = Handle(Geom_Plane)::DownCast (ageom); if (shape1.IsNull() || shape2.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeCoincident: nul shape" << std::endl; #endif NullifyAIS(anAIS); return; } GetGoodShape(shape1); GetGoodShape(shape2); if (aplane.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeCoincident: nul plane" << std::endl; #endif NullifyAIS(anAIS); return; } // Update de l'AIS Handle(PrsDim_IdenticRelation) ais; if (anAIS.IsNull()) ais = new PrsDim_IdenticRelation(shape1,shape2,aplane); else { ais = Handle(PrsDim_IdenticRelation)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_IdenticRelation(shape1,shape2,aplane); } else { ais->SetFirstShape(shape1); ais->SetSecondShape(shape2); ais->SetPlane(aplane); } } anAIS = ais; } //======================================================================= //function : ComputeRound //purpose : //======================================================================= void TPrsStd_ConstraintTools::ComputeRound(const Handle(TDataXtd_Constraint)& aConst, Handle(AIS_InteractiveObject)& anAIS) { Standard_Integer nbgeom = aConst->NbGeometries(); if (nbgeom < 1) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputeRound: at leat one geometry is needed" << std::endl; #endif NullifyAIS(anAIS); return; } TopoDS_Shape shape1; GetOneShape (aConst,shape1); if (shape1.IsNull()) { #ifdef OCCT_DEBUG std::cout << "TPrsStd_ConstraintTools::ComputePlacement: nul shape" << std::endl; #endif NullifyAIS(anAIS); return; } Standard_Real val1; TCollection_ExtendedString txt; ComputeTextAndValue(aConst,val1,txt,Standard_False); // Update de l'AIS Handle(PrsDim_RadiusDimension) ais; { try { OCC_CATCH_SIGNALS if (anAIS.IsNull()) ais = new PrsDim_RadiusDimension(shape1); else { ais = Handle(PrsDim_RadiusDimension)::DownCast(anAIS); if (ais.IsNull()) { ais = new PrsDim_RadiusDimension(shape1); } else { ais->SetMeasuredGeometry(shape1); } } } catch(Standard_Failure const&) { ais.Nullify(); } } anAIS = ais; } //======================================================================= //function : GetGeom //purpose : //======================================================================= void TPrsStd_ConstraintTools::GetGeom(const Handle(TDataXtd_Constraint)& aConst, Handle(Geom_Geometry)& aGeom) { Handle(TNaming_NamedShape) atgeom = aConst->GetPlane(); if (atgeom.IsNull()) { #ifdef OCCT_DEBUG std::cout<<"TPrsStd_ConstraintTools::GetGeom : aConst->GetPlane().IsNull()"<Label(); Handle(TNaming_NamedShape) NS; if(label.FindAttribute(TNaming_NamedShape::GetID(),NS)){ TopoDS_Shape s = TNaming_Tool::GetShape(NS); if(s.IsNull()) return; } if (TDataXtd_Geometry::Plane(label,aplane)) aGeom = new Geom_Plane(aplane); else if (TDataXtd_Geometry::Line(label,anaxis)) aGeom = new Geom_Line(anaxis); else if (TDataXtd_Geometry::Point(label,apoint)) aGeom = new Geom_CartesianPoint(apoint); #ifdef OCCT_DEBUG else { std::cout << "TPrsStd_ConstraintTools::GetGeom no geom on label " << std::endl; } #endif }