Fix inconsistency of order of points of an arc

This commit is contained in:
wmayer
2013-08-14 12:01:02 +02:00
parent 5c7aa1e81a
commit 99e0e21193
2 changed files with 10 additions and 10 deletions

View File

@@ -1393,12 +1393,12 @@ void SketchObject::rebuildVertexIndex(void)
VertexId2GeoId.push_back(i);
VertexId2PosId.push_back(mid);
} else if ((*it)->getTypeId() == Part::GeomArcOfCircle::getClassTypeId()) {
VertexId2GeoId.push_back(i);
VertexId2PosId.push_back(mid);
VertexId2GeoId.push_back(i);
VertexId2PosId.push_back(start);
VertexId2GeoId.push_back(i);
VertexId2PosId.push_back(end);
VertexId2GeoId.push_back(i);
VertexId2PosId.push_back(mid);
}
}
}