Initial sketch for plugins.

This commit is contained in:
James Grogan 2022-12-11 19:50:34 +00:00
parent b101a5f87c
commit ab3ffc77dc
16 changed files with 96 additions and 6 deletions

View file

@ -45,6 +45,7 @@ std::unique_ptr<TriMesh> MeshPrimitives::buildCircleAsTriMesh(unsigned numSegmen
const double y = cos(theta);
locations[idx] = {x, y};
theta += delta_theta;
std::cout << "Adding node at: " << x << " | " << y << std::endl;
}
EdgeIds edge_ids(2*numSegments);