Misc. typos

This commit is contained in:
Unknown
2017-12-06 11:17:50 -05:00
committed by wmayer
parent 1628e57409
commit f5146508bb
19 changed files with 24 additions and 24 deletions

View File

@@ -1733,7 +1733,7 @@ TopoDS_Shape Area::getShape(int index) {
}
// for pocketing, we discard the outer most offset wire in order to achieve
// the effect of offseting shape first than pocket, where the actual offset
// the effect of offsetting shape first than pocket, where the actual offset
// path is not wanted. For extra outline profiling, add extra_offset
if(front) {
areaPocket.add(toShape(*areas.front(),myParams.Fill));

View File

@@ -119,7 +119,7 @@ static const PyMethodDef areaOverrides[] = {
"\nThe first shape's wires will be unioned together regardless of the op code given\n"
"(except for 'Compound'). Subsequent shape's wire will be combined using the op code.\n"
"All shape wires shall be coplanar, and are used to determine a working plane for face\n"
"making and offseting. You can call setPlane() to supply a reference shape to determine\n"
"making and offsetting. You can call setPlane() to supply a reference shape to determine\n"
"the workplane in case the added shapes are all colinear lines.\n",
},

View File

@@ -321,7 +321,7 @@ class ObjectDressup:
while not done:
for i, redge in enumerate(rampedges):
if redge.Length >= rampremaining:
# will reach end of ramp within this edge, needs to be splitted
# will reach end of ramp within this edge, needs to be split
p1 = self.getSplitPoint(redge, rampremaining)
splitEdge = PathGeom.splitEdgeAt(redge, p1)
PathLog.debug("Ramp remaining: {}".format(rampremaining))
@@ -387,7 +387,7 @@ class ObjectDressup:
while not done:
for i, redge in enumerate(rampedges):
if redge.Length >= rampremaining:
# will reach end of ramp within this edge, needs to be splitted
# will reach end of ramp within this edge, needs to be split
p1 = self.getSplitPoint(redge, rampremaining)
splitEdge = PathGeom.splitEdgeAt(redge, p1)
PathLog.debug("Got split edge (index: {}) with lengths: {}, {}".format(i, splitEdge[0].Length, splitEdge[1].Length))
@@ -454,7 +454,7 @@ class ObjectDressup:
else:
for i, redge in enumerate(rampedges):
if redge.Length >= rampremaining:
# this edge needs to be splitted
# this edge needs to be split
p1 = self.getSplitPoint(redge, rampremaining)
splitEdge = PathGeom.splitEdgeAt(redge, p1)
PathLog.debug("Got split edges with lengths: {}, {}".format(splitEdge[0].Length, splitEdge[1].Length))