mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0025879: result of blend fails the bopcheck
Protection from the zero-length gp_Dir construction is added.
This commit is contained in:
parent
e7174545eb
commit
c5b89fa358
@ -1312,8 +1312,10 @@ Standard_Real ElCLib::LineParameter (const gp_Ax1& L, const gp_Pnt& P)
|
|||||||
Standard_Real ElCLib::CircleParameter (const gp_Ax2& Pos,
|
Standard_Real ElCLib::CircleParameter (const gp_Ax2& Pos,
|
||||||
const gp_Pnt& P)
|
const gp_Pnt& P)
|
||||||
{
|
{
|
||||||
Standard_Real Teta = (Pos.XDirection()) .AngleWithRef
|
gp_Vec aVec(Pos.Location(), P);
|
||||||
(gp_Vec (Pos.Location(), P), Pos.Direction());
|
Standard_Real Teta = 0.0;
|
||||||
|
if (aVec.SquareMagnitude() > gp::Resolution())
|
||||||
|
Teta = (Pos.XDirection()).AngleWithRef(aVec, Pos.Direction());
|
||||||
if (Teta < -1.e-16) Teta += PIPI;
|
if (Teta < -1.e-16) Teta += PIPI;
|
||||||
else if (Teta < 0) Teta = 0;
|
else if (Teta < 0) Teta = 0;
|
||||||
return Teta;
|
return Teta;
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
puts "TODO OCC25879 Windows: Error : result of blend fails the bopcheck"
|
|
||||||
|
|
||||||
puts "============"
|
puts "============"
|
||||||
puts "OCC25879"
|
puts "OCC25879"
|
||||||
puts "============"
|
puts "============"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user