src/primitives.cc

changeset 733
cc39df788660
parent 662
2f1bd9112408
child 757
8ab9fa53142b
--- a/src/primitives.cc	Wed Apr 23 15:39:42 2014 +0300
+++ b/src/primitives.cc	Wed Apr 23 18:25:09 2014 +0300
@@ -518,9 +518,9 @@
 		elif (type == Cone)
 		{
 			v1 = Vertex (v0[X] * (num + 1), 0.0f, v0[Z] * (num + 1));
-			v0[X] *= num;
-			v0[Y] = 1.0f;
-			v0[Z] *= num;
+			v0.setX (v0.x() * num);
+			v0.setY (1.0);
+			v0.setZ (v0.z() * num);
 		}
 
 		LDCondLine* line = new LDCondLine;

mercurial