Fix source comment and documentation typos

[skip ci]
This commit is contained in:
luzpaz
2023-02-17 13:19:54 +00:00
committed by Chris Hennes
parent a69f656c61
commit c48b426182
2 changed files with 2 additions and 2 deletions

View File

@@ -410,7 +410,7 @@ def calcBulge(v1, bulge, v2):
Returns
-------
Base::Vector3
The new point betwwen `v1` and `v2`.
The new point between `v1` and `v2`.
"""
chord = v2.sub(v1)
sagitta = (bulge * chord.Length)/2

View File

@@ -1451,7 +1451,7 @@ double Adaptive2d::CalcCutArea(Clipper &clip, const IntPoint &c1, const IntPoint
interPath->push_back(IntPoint(*p2));
}
else
{ // prev point inside, current point outside, find instersection
{ // prev point inside, current point outside, find intersection
if (Line2CircleIntersect(c2, toolRadiusScaled, *p1, *p2, inters))
{
if (inters.size() > 1)