Cleanup: comments (long lines) in freestyle

This commit is contained in:
Campbell Barton
2019-04-30 17:50:57 +10:00
parent 5ca8ac51d0
commit 1e8697cd80
145 changed files with 1218 additions and 1135 deletions

View File

@@ -35,7 +35,7 @@ void NodeTransform::Translate(real x, real y, real z)
void NodeTransform::Rotate(real iAngle, real x, real y, real z)
{
//Normalize the x,y,z vector;
// Normalize the x,y,z vector;
real norm = (real)sqrt(x * x + y * y + z * z);
if (0 == norm)
return;