Initial working version Face Centerline

This commit is contained in:
wandererfan
2019-05-25 19:56:58 -04:00
committed by WandererFan
parent 27555ad627
commit 07e26d3624
20 changed files with 2026 additions and 22 deletions

View File

@@ -481,6 +481,15 @@ int GeometryObject::addRandomVertex(Base::Vector3d pos)
return idx;
}
int GeometryObject::addRandomEdge(TechDrawGeometry::BaseGeom* base)
{
// Base::Console().Message("GO::addRandomEdge() - cosmetic: %d\n", base->cosmetic);
edgeGeom.push_back(base);
int idx = edgeGeom.size() - 1;
return idx;
}
//! empty Face geometry
void GeometryObject::clearFaceGeom()
{