From 247575df62f1c3b0bbda84abf503c8646cbe15ef Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Mon, 30 Jul 2018 21:02:55 -0700 Subject: [PATCH] CoordinateSystem: Document enumerators --- panda/src/linmath/coordinateSystem.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/panda/src/linmath/coordinateSystem.h b/panda/src/linmath/coordinateSystem.h index 313645a35e..b365297f84 100644 --- a/panda/src/linmath/coordinateSystem.h +++ b/panda/src/linmath/coordinateSystem.h @@ -26,10 +26,10 @@ enum CoordinateSystem { // turn is loaded from the config variable "coordinate-system". CS_default, - CS_zup_right, - CS_yup_right, - CS_zup_left, - CS_yup_left, + CS_zup_right, // Z-Up, Right-handed + CS_yup_right, // Y-Up, Right-handed + CS_zup_left, // Z-Up, Left-handed + CS_yup_left, // Y-Up, Left-handed // CS_invalid is not a coordinate system at all. It can be used in user- // input processing code to indicate a contradictory coordinate system