Fix typos

This commit is contained in:
luzpaz
2023-09-15 00:22:44 +00:00
committed by Chris Hennes
parent 602819478c
commit 760fac5d82
3 changed files with 3 additions and 3 deletions

View File

@@ -7649,7 +7649,7 @@ void SketchObject::rebuildExternalGeometry()
double t_min = t_max + 0.5 * M_PI;
// ON_max = OM(t_max) gives the point, which projected on the sketch plane,
// becomes the apoapse of the pojected ellipse.
// becomes the apoapse of the projected ellipse.
gp_Vec ON_max = origAxisMajor * cos(t_max) + origAxisMinor * sin(t_max);
gp_Vec ON_min = origAxisMajor * cos(t_min) + origAxisMinor * sin(t_min);
gp_Vec destAxisMajor = ProjVecOnPlane_UVN(ON_max, sketchPlane);