mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0028982: 2D offset creates faulty result from wire
Protection of the Edge/Edge intersection algorithm (IntTools_EdgeEdge) from incomplete type conversion due to presence of the Trimmed curves by using Adaptors for getting typed curves instead of direct casting. Test case for the issue.
This commit is contained in:
parent
9d8e074451
commit
a318d719e7
@ -1371,18 +1371,17 @@ Standard_Real ResolutionCoeff(const BRepAdaptor_Curve& theBAC,
|
||||
case GeomAbs_OffsetCurve : {
|
||||
const Handle(Geom_OffsetCurve)& anOffsetCurve = Handle(Geom_OffsetCurve)::DownCast(aCurve);
|
||||
const Handle(Geom_Curve)& aBasisCurve = anOffsetCurve->BasisCurve();
|
||||
const GeomAbs_CurveType aBCType = GeomAdaptor_Curve(aBasisCurve).GetType();
|
||||
GeomAdaptor_Curve aGBasisCurve(aBasisCurve);
|
||||
const GeomAbs_CurveType aBCType = aGBasisCurve.GetType();
|
||||
if (aBCType == GeomAbs_Line) {
|
||||
break;
|
||||
}
|
||||
else if (aBCType == GeomAbs_Circle) {
|
||||
aResCoeff = 1. / (2 * (anOffsetCurve->Offset() +
|
||||
Handle(Geom_Circle)::DownCast (aBasisCurve)->Circ().Radius()));
|
||||
aResCoeff = 1. / (2 * (anOffsetCurve->Offset() + aGBasisCurve.Circle().Radius()));
|
||||
break;
|
||||
}
|
||||
else if (aBCType == GeomAbs_Ellipse) {
|
||||
aResCoeff = 1. / (anOffsetCurve->Offset() +
|
||||
Handle(Geom_Ellipse)::DownCast (aBasisCurve)->MajorRadius());
|
||||
aResCoeff = 1. / (anOffsetCurve->Offset() + aGBasisCurve.Ellipse().MajorRadius());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
18
tests/bugs/modalg_7/bug28982
Normal file
18
tests/bugs/modalg_7/bug28982
Normal file
@ -0,0 +1,18 @@
|
||||
puts "========"
|
||||
puts "OCC28982"
|
||||
puts "========"
|
||||
puts ""
|
||||
########################################
|
||||
# 2D offset creates faulty result from wire
|
||||
########################################
|
||||
|
||||
restore [locate_data_file bug28982_ellipse.brep] e
|
||||
mkoffset result e 1 1
|
||||
|
||||
checkshape result_1
|
||||
if {![regexp "This shape seems to be OK" [bopcheck result_1]]} {
|
||||
puts "Error: The resulting wire is self-interfered"
|
||||
}
|
||||
checkprops result_1 -l 305.299
|
||||
|
||||
checkview -display result_1 -2d -path ${imagedir}/${test_image}.png
|
Loading…
x
Reference in New Issue
Block a user