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

0033664: Visualization - Selection does not work for simple shape

Fixed direction calculation for Select3D_SensitiveCylinder created from Geom_CylindricalSurface
This commit is contained in:
mzernova 2024-07-19 00:16:11 +01:00
parent 2fa9309186
commit 31078ca832
3 changed files with 102 additions and 54 deletions

View File

@ -562,54 +562,40 @@ void StdSelect_BRepSelectionTool::GetEdgeSensitive (const TopoDS_Shape& theShape
} }
//======================================================================= //=======================================================================
//function : getCylinderHeight //function : getCylinderCircles
//purpose : //purpose :
//======================================================================= //=======================================================================
static Standard_Real getCylinderHeight (const Handle(Poly_Triangulation)& theTriangulation, static NCollection_Array1<gp_Circ> getCylinderCircles (const TopoDS_Face& theHollowCylinder, Standard_Size& theNumCircles)
const TopLoc_Location& theLoc)
{ {
Bnd_Box aBox; NCollection_Array1<gp_Circ> aCircles (1, 2);
gp_Trsf aScaleTrsf; theNumCircles = 0;
aScaleTrsf.SetScaleFactor (theLoc.Transformation().ScaleFactor()); Standard_Integer aLinesNb = 0;
theTriangulation->MinMax (aBox, aScaleTrsf);
return aBox.CornerMax().Z() - aBox.CornerMin().Z();
}
//=======================================================================
//function : isCylinderOrCone
//purpose :
//=======================================================================
static Standard_Boolean isCylinderOrCone (const TopoDS_Face& theHollowCylinder, const gp_Pnt& theLocation, gp_Dir& theDirection)
{
Standard_Integer aCirclesNb = 0;
Standard_Boolean isCylinder = Standard_False;
gp_Pnt aPos;
TopExp_Explorer anEdgeExp; TopExp_Explorer anEdgeExp;
for (anEdgeExp.Init (theHollowCylinder, TopAbs_EDGE); anEdgeExp.More(); anEdgeExp.Next()) for (anEdgeExp.Init (theHollowCylinder, TopAbs_EDGE); anEdgeExp.More(); anEdgeExp.Next())
{ {
const TopoDS_Edge& anEdge = TopoDS::Edge (anEdgeExp.Current()); const TopoDS_Edge& anEdge = TopoDS::Edge (anEdgeExp.Current());
BRepAdaptor_Curve anAdaptor (anEdge); BRepAdaptor_Curve anAdaptor (anEdge);
aLinesNb++;
if (anAdaptor.GetType() == GeomAbs_Circle if (anAdaptor.GetType() == GeomAbs_Circle
&& BRep_Tool::IsClosed (anEdge)) && BRep_Tool::IsClosed (anEdge))
{ {
aCirclesNb++; theNumCircles++;
isCylinder = Standard_True; aCircles[theNumCircles] = anAdaptor.Circle();
if (aCirclesNb == 2) }
{ else if (anAdaptor.GetType() != GeomAbs_Line || aLinesNb > 4)
// Reverse the direction of the cylinder, relevant if the cylinder was created as a prism {
if (aPos.IsEqual (theLocation, Precision::Confusion())) theNumCircles = 0;
{ return NCollection_Array1<gp_Circ>();
theDirection.Reverse(); }
} if (theNumCircles == 2)
return Standard_True; {
} break;
aPos = anAdaptor.Circle().Location().XYZ();
} }
} }
return isCylinder; return aCircles;
} }
//======================================================================= //=======================================================================
@ -658,29 +644,33 @@ Standard_Boolean StdSelect_BRepSelectionTool::GetSensitiveForFace (const TopoDS_
} }
else if (Handle(Geom_ConicalSurface) aGeomCone = Handle(Geom_ConicalSurface)::DownCast (aSurf)) else if (Handle(Geom_ConicalSurface) aGeomCone = Handle(Geom_ConicalSurface)::DownCast (aSurf))
{ {
gp_Dir aDummyDir; Standard_Size aNumCircles;
if (isCylinderOrCone (theFace, gp_Pnt(), aDummyDir)) NCollection_Array1<gp_Circ> aCircles = getCylinderCircles (theFace, aNumCircles);
if (aNumCircles > 0 && aNumCircles < 3)
{ {
const gp_Cone aCone = BRepAdaptor_Surface (theFace).Cone(); const gp_Cone aCone = BRepAdaptor_Surface (theFace).Cone();
const Standard_Real aRad1 = aCone.RefRadius();
const Standard_Real aHeight = getCylinderHeight (aTriangulation, aLoc);
gp_Trsf aTrsf; gp_Trsf aTrsf;
aTrsf.SetTransformation (aCone.Position(), gp::XOY()); Standard_Real aRad1;
Standard_Real aRad2; Standard_Real aRad2;
if (aRad1 == 0.0) Standard_Real aHeight;
if (aNumCircles == 1)
{ {
aRad2 = Tan (aCone.SemiAngle()) * aHeight; aRad1 = 0.0;
aRad2 = aCircles.First().Radius();
aHeight = aRad2 * Tan (aCone.SemiAngle());
aTrsf.SetTransformation (aCone.Position(), gp::XOY());
} }
else else
{ {
const Standard_Real aTriangleHeight = (aCone.SemiAngle() > 0.0) aRad1 = aCircles.First().Radius();
? aRad1 / Tan (aCone.SemiAngle()) aRad2 = aCircles.Last().Radius();
: aRad1 / Tan (Abs (aCone.SemiAngle())) - aHeight; aHeight = aCircles.First().Location().Distance (aCircles.Last().Location());
aRad2 = (aCone.SemiAngle() > 0.0)
? aRad1 * (aTriangleHeight + aHeight) / aTriangleHeight const gp_Pnt aPos = aCircles.First().Location();
: aRad1 * aTriangleHeight / (aTriangleHeight + aHeight); const gp_Dir aDirection (aCircles.Last().Location().XYZ() - aPos.XYZ());
aTrsf.SetTransformation (gp_Ax3(aPos, aDirection), gp::XOY());
} }
Handle(Select3D_SensitiveCylinder) aSensSCyl = new Select3D_SensitiveCylinder (theOwner, aRad1, aRad2, aHeight, aTrsf, true); Handle(Select3D_SensitiveCylinder) aSensSCyl = new Select3D_SensitiveCylinder (theOwner, aRad1, aRad2, aHeight, aTrsf, true);
@ -690,18 +680,19 @@ Standard_Boolean StdSelect_BRepSelectionTool::GetSensitiveForFace (const TopoDS_
} }
else if (Handle(Geom_CylindricalSurface) aGeomCyl = Handle(Geom_CylindricalSurface)::DownCast (aSurf)) else if (Handle(Geom_CylindricalSurface) aGeomCyl = Handle(Geom_CylindricalSurface)::DownCast (aSurf))
{ {
const gp_Cylinder aCyl = BRepAdaptor_Surface (theFace).Cylinder(); Standard_Size aNumCircles;
gp_Ax3 aPos = aCyl.Position(); NCollection_Array1<gp_Circ> aCircles = getCylinderCircles (theFace, aNumCircles);
gp_Dir aDirection = aPos.Direction(); if (aNumCircles == 2)
if (isCylinderOrCone (theFace, aPos.Location(), aDirection))
{ {
const gp_Cylinder aCyl = BRepAdaptor_Surface (theFace).Cylinder();
const Standard_Real aRad = aCyl.Radius(); const Standard_Real aRad = aCyl.Radius();
const Standard_Real aHeight = getCylinderHeight (aTriangulation, aLoc); const gp_Pnt aPos = aCircles.First().Location();
const gp_Dir aDirection (aCircles.Last().Location().XYZ() - aPos.XYZ());
const Standard_Real aHeight = aPos.Distance (aCircles.Last().Location());
gp_Trsf aTrsf; gp_Trsf aTrsf;
aPos.SetDirection (aDirection); aTrsf.SetTransformation (gp_Ax3 (aPos, aDirection), gp::XOY());
aTrsf.SetTransformation (aPos, gp::XOY());
Handle(Select3D_SensitiveCylinder) aSensSCyl = new Select3D_SensitiveCylinder (theOwner, aRad, aRad, aHeight, aTrsf, true); Handle(Select3D_SensitiveCylinder) aSensSCyl = new Select3D_SensitiveCylinder (theOwner, aRad, aRad, aHeight, aTrsf, true);
theSensitiveList.Append (aSensSCyl); theSensitiveList.Append (aSensSCyl);

21
tests/v3d/bugs/bug33664_1 Normal file
View File

@ -0,0 +1,21 @@
puts "============"
puts "0033664: Visualization - Selection does not work for simple shape"
puts "============"
puts ""
pload MODELING VISUALIZATION
vclear
vinit View1
restore [locate_data_file cylinder_surface.brep] b
vdisplay -dispMode 1 b
vfit
vsensdis
vselect 200 200
if {[vnbselected] != "1"} {
puts "ERROR: wrong sensitive area"
}
vselect 0 0
vdump $::imagedir/${::casename}_cylinder.png

36
tests/v3d/bugs/bug33664_2 Normal file
View File

@ -0,0 +1,36 @@
puts "============"
puts "0033664: Visualization - Selection does not work for simple shape"
puts "============"
puts ""
pload MODELING VISUALIZATION
vclear
vinit View1
pcone c1 50 100 100
ttranslate c1 100 0 100
explode c1
explode c1_1
pcone c2 100 50 100
ttranslate c2 -100 0 100
explode c2
explode c2_1
pcone c3 0 100 100
ttranslate c3 100 0 -100
explode c3
explode c3_1
pcone c4 100 0 100
ttranslate c4 -100 0 -100
explode c4
explode c4_1
vdisplay c1_1_1 c2_1_1 c3_1_1 c4_1_1 -dispmode 1
vsensdis
vfront
vfit
vdump $::imagedir/${::casename}_cone.png