Minor typo fix

This commit is contained in:
logari81
2012-07-07 17:38:44 +02:00
parent 3a487704e7
commit 8dff484e18

View File

@@ -53,8 +53,8 @@ std::string LinePy::representation(void) const
Base::Vector3d start = getGeomLineSegmentPtr()->getStartPoint();
Base::Vector3d end = getGeomLineSegmentPtr()->getEndPoint();
str << "<Line ("
<< start.x << ";" <<start.y << "," <<start.z << ") ("
<< end.x << ";" <<end.y << "," <<end.z << ") >";
<< start.x << "," <<start.y << "," <<start.z << ") ("
<< end.x << "," <<end.y << "," <<end.z << ") >";
//}
return str.str();