mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0025104: Prism from BSpline curve can not be chamfered
Protection from zero-length vectors has been added.
This commit is contained in:
parent
f16a6cc5aa
commit
90f0fdad2a
@ -1436,7 +1436,8 @@ void IntCurveSurface_ComputeTransitions(const TheCurve& curve,
|
||||
NSurf = D1U.Crossed(D1V);
|
||||
TheCurveTool::D1(curve,w,Psurf,D1U);
|
||||
Standard_Real Norm = NSurf.Magnitude();
|
||||
if(Norm>TOLERANCE_ANGULAIRE) {
|
||||
if(Norm>TOLERANCE_ANGULAIRE &&
|
||||
D1U.SquareMagnitude() > TOLERANCE_ANGULAIRE) {
|
||||
D1U.Normalize();
|
||||
CosDir = NSurf.Dot(D1U);
|
||||
CosDir/=Norm;
|
||||
|
@ -996,15 +996,22 @@ Standard_Boolean IntTools_EdgeEdge::IsIntersection(const Standard_Real aT11,
|
||||
}
|
||||
//
|
||||
Standard_Real anAngleCriteria;
|
||||
Standard_Real anAngle1, anAngle2;
|
||||
Standard_Real anAngle1 = 0.0,
|
||||
anAngle2 = 0.0;
|
||||
//
|
||||
anAngleCriteria = 5.e-3;
|
||||
if (bSmall_11_21 && bSmall_12_22) {
|
||||
anAngle1 = aV11.Angle(aV21);
|
||||
anAngle2 = aV12.Angle(aV22);
|
||||
} else {
|
||||
anAngle1 = aV11.Angle(aV22);
|
||||
anAngle2 = aV12.Angle(aV21);
|
||||
if (aV11.SquareMagnitude() > Precision::SquareConfusion() &&
|
||||
aV12.SquareMagnitude() > Precision::SquareConfusion() &&
|
||||
aV21.SquareMagnitude() > Precision::SquareConfusion() &&
|
||||
aV22.SquareMagnitude() > Precision::SquareConfusion() )
|
||||
{
|
||||
if (bSmall_11_21 && bSmall_12_22) {
|
||||
anAngle1 = aV11.Angle(aV21);
|
||||
anAngle2 = aV12.Angle(aV22);
|
||||
} else {
|
||||
anAngle1 = aV11.Angle(aV22);
|
||||
anAngle2 = aV12.Angle(aV21);
|
||||
}
|
||||
}
|
||||
//
|
||||
if (((anAngle1 < anAngleCriteria) || ((M_PI - anAngle1) < anAngleCriteria)) ||
|
||||
|
@ -1,5 +1,3 @@
|
||||
puts "TODO OCC25104 Windows: ERROR: OCC25104 is reproduced."
|
||||
|
||||
puts "========"
|
||||
puts "OCC25104"
|
||||
puts "========"
|
||||
|
@ -1,5 +1,3 @@
|
||||
puts "TODO OCC25693 Windows: Wire of BSplines fails bopcheck"
|
||||
|
||||
puts "============"
|
||||
puts "OCC25693"
|
||||
puts "============"
|
||||
|
@ -1,5 +1,3 @@
|
||||
puts "TODO OCC25693 Windows: Wire of BSplines fails bopcheck"
|
||||
|
||||
puts "============"
|
||||
puts "OCC25693"
|
||||
puts "============"
|
||||
|
Loading…
x
Reference in New Issue
Block a user