// Created on: 1997-01-21 // Created by: Prestataire Christiane ARMAND // Copyright (c) 1997-1999 Matra Datavision // 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. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include IMPLEMENT_STANDARD_RTTIEXT(AIS_Circle, AIS_InteractiveObject) //================================================================================================= AIS_Circle::AIS_Circle(const Handle(Geom_Circle)& aComponent) : AIS_InteractiveObject(PrsMgr_TOP_AllView), myComponent(aComponent), myUStart(0.0), myUEnd(2.0 * M_PI), myCircleIsArc(Standard_False), myIsFilledCircleSens(Standard_False) { } //================================================================================================= AIS_Circle::AIS_Circle(const Handle(Geom_Circle)& theComponent, const Standard_Real theUStart, const Standard_Real theUEnd, const Standard_Boolean theIsFilledCircleSens) : AIS_InteractiveObject(PrsMgr_TOP_AllView), myComponent(theComponent), myUStart(theUStart), myUEnd(theUEnd), myCircleIsArc(Abs(Abs(theUEnd - theUStart) - 2.0 * M_PI) > gp::Resolution()), myIsFilledCircleSens(theIsFilledCircleSens) { } //================================================================================================= void AIS_Circle::Compute(const Handle(PrsMgr_PresentationManager)&, const Handle(Prs3d_Presentation)& thePrs, const Standard_Integer) { if (myCircleIsArc) { ComputeArc(thePrs); } else { ComputeCircle(thePrs); } } //================================================================================================= void AIS_Circle::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer /*aMode*/) { if (myCircleIsArc) ComputeArcSelection(aSelection); else ComputeCircleSelection(aSelection); } //================================================================================================= void AIS_Circle::replaceWithNewLineAspect(const Handle(Prs3d_LineAspect)& theAspect) { if (!myDrawer->HasLink()) { myDrawer->SetLineAspect(theAspect); return; } const Handle(Graphic3d_AspectLine3d) anAspectOld = myDrawer->LineAspect()->Aspect(); const Handle(Graphic3d_AspectLine3d) anAspectNew = !theAspect.IsNull() ? theAspect->Aspect() : myDrawer->Link()->LineAspect()->Aspect(); if (anAspectNew != anAspectOld) { myDrawer->SetLineAspect(theAspect); Graphic3d_MapOfAspectsToAspects aReplaceMap; aReplaceMap.Bind(anAspectOld, anAspectNew); replaceAspects(aReplaceMap); } } //================================================================================================= void AIS_Circle::SetColor(const Quantity_Color& aCol) { hasOwnColor = Standard_True; myDrawer->SetColor(aCol); if (!myDrawer->HasOwnLineAspect()) { Standard_Real WW = HasWidth() ? myOwnWidth : myDrawer->HasLink() ? AIS_GraphicTool::GetLineWidth(myDrawer->Link(), AIS_TOA_Line) : 1.; replaceWithNewLineAspect(new Prs3d_LineAspect(aCol, Aspect_TOL_SOLID, WW)); } else { myDrawer->LineAspect()->SetColor(aCol); SynchronizeAspects(); } } //================================================================================================= void AIS_Circle::SetWidth(const Standard_Real aValue) { myOwnWidth = (Standard_ShortReal)aValue; if (!myDrawer->HasOwnLineAspect()) { Quantity_Color CC = Quantity_NOC_YELLOW; if (HasColor()) CC = myDrawer->Color(); else if (myDrawer->HasLink()) AIS_GraphicTool::GetLineColor(myDrawer->Link(), AIS_TOA_Line, CC); replaceWithNewLineAspect(new Prs3d_LineAspect(CC, Aspect_TOL_SOLID, aValue)); } else { myDrawer->LineAspect()->SetWidth(aValue); SynchronizeAspects(); } } //================================================================================================= void AIS_Circle::UnsetColor() { hasOwnColor = Standard_False; if (!HasWidth()) { replaceWithNewLineAspect(Handle(Prs3d_LineAspect)()); } else { Quantity_Color CC = Quantity_NOC_YELLOW; if (HasColor()) CC = myDrawer->Color(); else if (myDrawer->HasLink()) AIS_GraphicTool::GetLineColor(myDrawer->Link(), AIS_TOA_Line, CC); myDrawer->LineAspect()->SetColor(CC); myDrawer->SetColor(CC); SynchronizeAspects(); } } //================================================================================================= void AIS_Circle::UnsetWidth() { if (!HasColor()) { replaceWithNewLineAspect(Handle(Prs3d_LineAspect)()); } else { Standard_ShortReal WW = myDrawer->HasLink() ? (Standard_ShortReal)AIS_GraphicTool::GetLineWidth(myDrawer->Link(), AIS_TOA_Line) : 1.0f; myDrawer->LineAspect()->SetWidth(WW); myOwnWidth = WW; } } //================================================================================================= void AIS_Circle::ComputeCircle(const Handle(Prs3d_Presentation)& thePresentation) { GeomAdaptor_Curve curv(myComponent); Standard_Real prevdev = myDrawer->DeviationCoefficient(); myDrawer->SetDeviationCoefficient(1.e-5); StdPrs_DeflectionCurve::Add(thePresentation, curv, myDrawer); myDrawer->SetDeviationCoefficient(prevdev); } //================================================================================================= void AIS_Circle::ComputeArc(const Handle(Prs3d_Presentation)& thePresentation) { GeomAdaptor_Curve curv(myComponent, myUStart, myUEnd); Standard_Real prevdev = myDrawer->DeviationCoefficient(); myDrawer->SetDeviationCoefficient(1.e-5); StdPrs_DeflectionCurve::Add(thePresentation, curv, myDrawer); myDrawer->SetDeviationCoefficient(prevdev); } //================================================================================================= void AIS_Circle::ComputeCircleSelection(const Handle(SelectMgr_Selection)& theSelection) { Handle(SelectMgr_EntityOwner) anOwner = new SelectMgr_EntityOwner(this); Handle(Select3D_SensitiveCircle) aCirc = new Select3D_SensitiveCircle(anOwner, myComponent->Circ(), myIsFilledCircleSens); theSelection->Add(aCirc); } //================================================================================================= void AIS_Circle::ComputeArcSelection(const Handle(SelectMgr_Selection)& theSelection) { Handle(SelectMgr_EntityOwner) anOwner = new SelectMgr_EntityOwner(this); Handle(Select3D_SensitivePoly) aSeg = new Select3D_SensitivePoly(anOwner, myComponent->Circ(), myUStart, myUEnd, myIsFilledCircleSens); theSelection->Add(aSeg); }