Split variables to seperate lines.

This commit is contained in:
Jan Möbius
2016-04-28 09:39:31 +02:00
parent 2cd4372420
commit 3917bccea8

View File

@@ -848,8 +848,10 @@ compute_screen_space_error(VHierarchyNodeHandle node_handle, VHierarchyNodeHandl
Mesh::VertexFaceIter vf_it; Mesh::VertexFaceIter vf_it;
Mesh::HalfedgeHandle heh; Mesh::HalfedgeHandle heh;
Mesh::VertexHandle vh; Mesh::VertexHandle vh;
Vec3f residual, res; Vec3f residual;
Vec3f lp, tri[3]; Vec3f res;
Vec3f lp;
Vec3f tri[3];
float s, t; float s, t;
VHierarchyNodeHandleContainer::iterator n_it, n_end(leaf_nodes.end()); VHierarchyNodeHandleContainer::iterator n_it, n_end(leaf_nodes.end());