1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/PrsDim/PrsDim_EqualRadiusRelation.cxx

220 lines
8.2 KiB
C++

// Created on: 1998-01-20
// Created by: Julia GERASIMOVA
// Copyright (c) 1998-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 <PrsDim_EqualRadiusRelation.hxx>
#include <PrsDim.hxx>
#include <BRepAdaptor_Curve.hxx>
#include <DsgPrs_EqualRadiusPresentation.hxx>
#include <ElCLib.hxx>
#include <Geom_Circle.hxx>
#include <Geom_Plane.hxx>
#include <GeomAPI_ProjectPointOnSurf.hxx>
#include <gp_Circ.hxx>
#include <Precision.hxx>
#include <Prs3d_DimensionAspect.hxx>
#include <Prs3d_Drawer.hxx>
#include <Prs3d_Presentation.hxx>
#include <Select3D_SensitiveBox.hxx>
#include <Select3D_SensitiveSegment.hxx>
#include <SelectMgr_EntityOwner.hxx>
#include <SelectMgr_Selection.hxx>
#include <Standard_Type.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
IMPLEMENT_STANDARD_RTTIEXT(PrsDim_EqualRadiusRelation, PrsDim_Relation)
//=======================================================================
//function : PrsDim_EqualRadiusRelation
//purpose :
//=======================================================================
PrsDim_EqualRadiusRelation::PrsDim_EqualRadiusRelation( const TopoDS_Edge& aFirstEdge,
const TopoDS_Edge& aSecondEdge,
const Handle( Geom_Plane )& aPlane )
: PrsDim_Relation()
{
myFShape = aFirstEdge;
mySShape = aSecondEdge;
myPlane = aPlane;
}
//=======================================================================
//function : Compute
//purpose :
//=======================================================================
void PrsDim_EqualRadiusRelation::Compute (const Handle(PrsMgr_PresentationManager)& ,
const Handle(Prs3d_Presentation)& aPresentation,
const Standard_Integer )
{
BRepAdaptor_Curve FirstCurve( TopoDS::Edge( myFShape ) ), SecondCurve( TopoDS::Edge( mySShape ) );
Standard_Real FirstPar1 = FirstCurve.FirstParameter(), LastPar1 = FirstCurve.LastParameter(),
FirstPar2 = SecondCurve.FirstParameter(), LastPar2 = SecondCurve.LastParameter();
Handle( Geom_Curve ) FirstProjCurve = FirstCurve.Curve().Curve(),
SecondProjCurve = SecondCurve.Curve().Curve();
gp_Pnt FirstPoint1, LastPoint1, FirstPoint2, LastPoint2;
Standard_Boolean isFirstOnPlane, isSecondOnPlane;
PrsDim::ComputeGeomCurve (FirstProjCurve, FirstPar1, LastPar1, FirstPoint1, LastPoint1, myPlane, isFirstOnPlane);
PrsDim::ComputeGeomCurve (SecondProjCurve, FirstPar2, LastPar2, FirstPoint2, LastPoint2, myPlane, isSecondOnPlane);
if (!isFirstOnPlane)
ComputeProjEdgePresentation( aPresentation, TopoDS::Edge( myFShape ), FirstProjCurve, FirstPoint1, LastPoint1 );
if (! isSecondOnPlane)
ComputeProjEdgePresentation( aPresentation, TopoDS::Edge( mySShape ), SecondProjCurve, FirstPoint2, LastPoint2 );
gp_Circ FirstCirc = (Handle( Geom_Circle )::DownCast( FirstProjCurve ))->Circ();
gp_Circ SecondCirc = (Handle( Geom_Circle )::DownCast( SecondProjCurve ))->Circ();
myFirstCenter = FirstCirc.Location();
mySecondCenter = SecondCirc.Location();
//ota -- begin --
if (myAutomaticPosition)
{
myFirstPoint = ElCLib::Value( (FirstPar1 + LastPar1)*0.5, FirstCirc );
mySecondPoint = ElCLib::Value( (FirstPar2 + LastPar2)*0.5, SecondCirc );
}
else {
Standard_Real aPar = ElCLib::Parameter(FirstCirc, myFirstPoint);
if (IntegerPart(0.5*LastPar1/M_PI) != 0 && aPar < FirstPar1 )
aPar +=2*M_PI*IntegerPart(0.5*LastPar1/M_PI);
Standard_Real aRadius = FirstCirc.Radius();
if (Abs(myFirstPoint.Distance(myFirstCenter) - aRadius) >= Precision::Confusion())
myFirstPoint = ElCLib::Value(aPar, FirstCirc);
if ( FirstPoint1.Distance(LastPoint1) > Precision::Confusion()){
//check where is myFirstPoint
if (aPar > LastPar1 || aPar < FirstPar1)
{
//myFirstPoint is out of Arc of FirstCircle
if (FirstPoint1.Distance(myFirstPoint)< LastPoint1.Distance(myFirstPoint))
myFirstPoint = FirstPoint1;
else
myFirstPoint = LastPoint1;
}
}
aPar = ElCLib::Parameter(SecondCirc, mySecondPoint);
if (IntegerPart(0.5*LastPar2/M_PI) != 0 && aPar < FirstPar2 )
aPar +=2*M_PI*IntegerPart(0.5*LastPar2/M_PI);
aRadius = SecondCirc.Radius();
if (Abs(mySecondPoint.Distance(mySecondCenter) - aRadius) >= Precision::Confusion())
mySecondPoint = ElCLib::Value(aPar, SecondCirc);
if (FirstPoint2.Distance(LastPoint2) > Precision::Confusion()){
if (aPar > LastPar2 || aPar < FirstPar2)
{ //mySecondPoint is out of Arc of mySecondCircle
if (FirstPoint2.Distance(mySecondPoint)< LastPoint2.Distance(mySecondPoint))
mySecondPoint = FirstPoint2;
else
mySecondPoint = LastPoint2;
}
}
}
if( !myArrowSizeIsDefined )
myArrowSize = (Min(myFirstCenter.Distance(myFirstPoint),
mySecondCenter.Distance(mySecondPoint)))*0.05;
Handle(Prs3d_DimensionAspect) la = myDrawer->DimensionAspect();
Handle(Prs3d_ArrowAspect) arr = la->ArrowAspect();
arr->SetLength(myArrowSize);
//ota -- end --
DsgPrs_EqualRadiusPresentation::Add(aPresentation, myDrawer,
myFirstCenter, mySecondCenter, myFirstPoint, mySecondPoint, myPlane );
}
//=======================================================================
//function : ComputeSelection
//purpose :
//=======================================================================
void PrsDim_EqualRadiusRelation::ComputeSelection( const Handle( SelectMgr_Selection )& aSelection,
const Standard_Integer )
{
Handle( SelectMgr_EntityOwner ) own = new SelectMgr_EntityOwner( this, 7 );
Handle( Select3D_SensitiveSegment ) seg;
seg = new Select3D_SensitiveSegment( own, myFirstCenter, myFirstPoint );
aSelection->Add( seg );
if(!myAutomaticPosition)
ComputeRadiusPosition();
seg = new Select3D_SensitiveSegment( own, mySecondCenter, mySecondPoint );
aSelection->Add( seg );
seg = new Select3D_SensitiveSegment( own, myFirstCenter, mySecondCenter );
aSelection->Add( seg );
// Two small lines
gp_Pnt Middle( (myFirstCenter.XYZ() + mySecondCenter.XYZ())*0.5 );
Standard_Real SmallDist = .001;
//Should be changed as the domain of small lines could be changed.
Handle( Select3D_SensitiveBox ) box = new Select3D_SensitiveBox(own,
Middle.X() - SmallDist,
Middle.Y() - SmallDist,
Middle.Z() - SmallDist,
Middle.X() + SmallDist,
Middle.Y() + SmallDist,
Middle.Z() + SmallDist );
aSelection->Add(box);
}
//=================================================================
//function : ComputeRadiusPosition
//purpose :
//=================================================================
void PrsDim_EqualRadiusRelation::ComputeRadiusPosition()
{
if (myAutomaticPosition ||
myFirstCenter.Distance(myPosition) < Precision::Confusion() ||
mySecondCenter.Distance(myPosition) < Precision::Confusion())
return;
gp_Pnt aPosition;
//project myPosition to the plane of constraint
GeomAPI_ProjectPointOnSurf aProj(myPosition, myPlane);
aPosition = aProj.NearestPoint();
Standard_Real aDist1 = myFirstPoint.Distance(aPosition);
Standard_Real aDist2 = mySecondPoint.Distance(aPosition);
if(aDist1<aDist2)
{
Standard_Real Rad1 = myFirstPoint.Distance(myFirstCenter);
const gp_Dir aNewDir1(aPosition.XYZ() - myFirstCenter.XYZ());
const gp_Vec aTVec (aNewDir1.XYZ()*Rad1);
myFirstPoint = myFirstCenter.Translated(aTVec);
}
else {
Standard_Real Rad2 = mySecondPoint.Distance(mySecondCenter);
const gp_Dir aNewDir2(aPosition.XYZ() - mySecondCenter.XYZ());
gp_Vec aTVec (aNewDir2.XYZ()*Rad2);
mySecondPoint = mySecondCenter.Translated(aTVec);
}
}