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

Modeling - Resetting Plane YVector #296

Fix calculation of myOY in GeomPlate_BuildAveragePlane to use cross product with OZ
This commit is contained in:
dpasukhi 2025-01-28 12:11:53 +00:00
parent 78fb1869fe
commit 16ed3b4ced

View File

@ -439,7 +439,7 @@ void GeomPlate_BuildAveragePlane::BasePlan(const gp_Vec& OZ)
|| ((Abs(n1) <= myTol) && (Abs(n3) <= myTol)))
{
myOX.SetCoord(V3(1), V3(2), V3(3));
myOY.SetCoord(0, 0, 0);
myOY = OZ ^ myOX;
}
else
{