Revision: 65129
          http://sourceforge.net/p/brlcad/code/65129
Author:   brlcad
Date:     2015-06-01 16:31:03 +0000 (Mon, 01 Jun 2015)
Log Message:
-----------
use XYZ

Modified Paths:
--------------
    brlcad/trunk/include/vmath.h

Modified: brlcad/trunk/include/vmath.h
===================================================================
--- brlcad/trunk/include/vmath.h        2015-06-01 14:59:43 UTC (rev 65128)
+++ brlcad/trunk/include/vmath.h        2015-06-01 16:31:03 UTC (rev 65129)
@@ -1456,9 +1456,9 @@
 
 /** @brief Similar to VELMUL. */
 #define VELDIV(a, b, c) do { \
-       (a)[0] = (b)[0] / (c)[0]; \
-       (a)[1] = (b)[1] / (c)[1]; \
-       (a)[2] = (b)[2] / (c)[2]; \
+       (a)[X] = (b)[X] / (c)[X]; \
+       (a)[Y] = (b)[Y] / (c)[Y]; \
+       (a)[Z] = (b)[Z] / (c)[Z]; \
     } while (0)
 
 /**

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to