source typo fixes pt3 (only on py3 merged code)

This commit is contained in:
Kunda
2017-02-28 14:32:33 -05:00
parent 6c720ced84
commit a78e8ffd95
32 changed files with 40 additions and 40 deletions

View File

@@ -60,7 +60,7 @@ using namespace std;
std::string PovTools::getCamera(const CamDef& Cam, int width, int height)
{
std::stringstream out;
out << "// declares positon and view direction\n" << endl
out << "// declares position and view direction\n" << endl
<< "// Generated by FreeCAD (http://www.freecadweb.org/)" << endl
// writing Camera positions
@@ -97,7 +97,7 @@ void PovTools::writeCameraVec(const char* FileName, const std::vector<CamDef>& C
{
std::stringstream out;
std::vector<CamDef>::const_iterator It;
out << "// declares positon and view directions\n"
out << "// declares position and view directions\n"
<< "// Generated by FreeCAD (http://www.freecadweb.org/)\n\n"
<< "// Total number of camera positions\n"
<< "#declare nCamPos = " << CamVec.size() << ";\n\n";