Minor typo fix

This commit is contained in:
logari81 2012-07-07 17:38:44 +02:00
parent 2e6255305c
commit 093f1d1af0

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();