Skip to content
Snippets Groups Projects
Commit 5bf002f7 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Format code

parent ca8b18d0
No related branches found
No related tags found
No related merge requests found
......@@ -59,9 +59,9 @@ namespace VirtualRobot
triangle(const Eigen::Vector3f& v1, const Eigen::Vector3f& v2, const Eigen::Vector3f& v3) :
vertex1(v1), vertex2(v2), vertex3(v3) {}
triangle(const Eigen::Vector3f& v) :
triangle(v,v,v) {}
triangle(v, v, v) {}
triangle(float x, float y, float z) :
triangle(Eigen::Vector3f{x,y,z}) {}
triangle(Eigen::Vector3f{x, y, z}) {}
Eigen::Vector3f vertex1;
Eigen::Vector3f vertex2;
Eigen::Vector3f vertex3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment