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

0033689: Canonical Recognition - Circle construction problem

Fixed problem with creating null-length gp_Dir
This commit is contained in:
akaftasev 2024-04-18 17:38:11 +01:00 committed by dpasukhi
parent c6065f5da9
commit 5cf1003a66

View File

@ -141,6 +141,13 @@ gce_MakeCirc::gce_MakeCirc(const gp_Pnt& P1 ,
dist2 = P2.Distance(pInt);
dist3 = P3.Distance(pInt);
pInt.Coord(x3,y3,z3);
if (dist1 < aResolution)
{
gp_Dir Dirx(1., 0., 0.);
gp_Dir Dirz(0., 0., 1.);
TheCirc = gp_Circ(gp_Ax2(pInt, Dirx, Dirz), 0.);
return;
}
Dir1 = gp_Dir(x1-x3,y1-y3,z1-z3);
//modified by NIZNHY-PKV Thu Mar 3 11:31:11 2005f
//Dir2 = gp_Dir(x2-x3,y2-y3,z2-z3);