Sketcher: comment typos

This commit is contained in:
luzpaz
2017-12-24 11:31:43 -05:00
committed by wmayer
parent c4dd42de98
commit 4eb5a431fa
4 changed files with 7 additions and 7 deletions

View File

@@ -737,7 +737,7 @@ int Sketch::addBSpline(const Part::GeomBSplineCurve &bspline, bool fixed)
double * p1x = new double(startPnt.x);
double * p1y = new double(startPnt.y);
// if periodic, startpoint and endpoint do not play a role in the solver, this removes unnecesarry DoF of determining where in the curve
// if periodic, startpoint and endpoint do not play a role in the solver, this removes unnecessary DoF of determining where in the curve
// the start and the stop should be
if(!periodic) {
params.push_back(p1x);
@@ -750,7 +750,7 @@ int Sketch::addBSpline(const Part::GeomBSplineCurve &bspline, bool fixed)
double * p2x = new double(endPnt.x);
double * p2y = new double(endPnt.y);
// if periodic, startpoint and endpoint do not play a role in the solver, this removes unnecesarry DoF of determining where in the curve
// if periodic, startpoint and endpoint do not play a role in the solver, this removes unnecessary DoF of determining where in the curve
// the start and the stop should be
if(!periodic) {
params.push_back(p2x);
@@ -3372,7 +3372,7 @@ TopoShape Sketch::toShape(void) const
TopoDS_Wire new_wire = mkWire.Wire(); // current new wire
// try to connect each edge to the wire, the wire is complete if no more egdes are connectible
// try to connect each edge to the wire, the wire is complete if no more edges are connectible
bool found = false;
do {
found = false;