Skip to content

Commit

Permalink
Better formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alxbilger authored Mar 12, 2024
1 parent 1c5dffa commit 24331f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PluginExample/MyMappingPendulumInPlane.inl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void MyMappingPendulumInPlane<In, Out>::draw(const core::visual::VisualParams* v
points.resize(2*out.size());
for (unsigned int i=0; i<out.size(); i++)
{
points[2*i] = Vec3(0, 0,0);
points[2*i] = Vec3(0, 0, 0);
points[2*i+1] = Out::getCPos(out[i]);
}
vparams->drawTool()->drawLines (points, 1, type::RGBAColor::green());
Expand Down

0 comments on commit 24331f8

Please sign in to comment.