Path: source comment typo fixes

Found via `codespell`
This commit is contained in:
luz.paz
2019-05-29 14:38:09 -04:00
committed by abdullahtahiriyo
parent 2b02659010
commit ec12ffae0c
50 changed files with 51 additions and 51 deletions

View File

@@ -506,7 +506,7 @@ void cStock::CreatePocket(float cxf, float cyf, float radf, float height)
void cStock::ApplyLinearTool(Point3D & p1, Point3D & p2, cSimTool & tool)
{
// tanslate coordinates
// translate coordinates
Point3D pi1 = ToInner(p1);
Point3D pi2 = ToInner(p2);
float rad = tool.radius;
@@ -575,7 +575,7 @@ void cStock::ApplyLinearTool(Point3D & p1, Point3D & p2, cSimTool & tool)
void cStock::ApplyCircularTool(Point3D & p1, Point3D & p2, Point3D & cent, cSimTool & tool, bool isCCW)
{
// tanslate coordinates
// translate coordinates
Point3D pi1 = ToInner(p1);
Point3D pi2 = ToInner(p2);
Point3D centi(cent.x / m_res, cent.y / m_res, cent.z);