Skip to content

Commit

Permalink
Adjust rope radius to be human scale.
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Jun 28, 2023
1 parent 6e921d3 commit 5ab6821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ void updatePathViz() {
auto pathQ = psMesh->addSurfaceGraphQuantity("path edges", edgeNetwork->getPathPolyline3D());
pathQ->setEnabled(true);
pathQ->setColor(polyscope::render::RGB_RED);
pathQ->setRadius(0.001);
pathQ->setRadius(0.01);

if (vizAllIntrinsicEdges) {
auto edgeQ = psMesh->addSurfaceGraphQuantity("intrinsic edges", edgeNetwork->getAllEdgePolyline3D());
edgeQ->setEnabled(true);
edgeQ->setColor(polyscope::render::RGB_ORANGE);
edgeQ->setRadius(0.0005);
edgeQ->setRadius(0.005);
}

{ // Marked vertices
Expand Down

0 comments on commit 5ab6821

Please sign in to comment.