From 25908ef21c00ec8263405e3fc9370f05afb93eea Mon Sep 17 00:00:00 2001 From: Hugh Sanderson Date: Fri, 1 Dec 2023 09:45:31 +0800 Subject: [PATCH] Only use println on sys platforms --- src/nme/geom/Matrix3D.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nme/geom/Matrix3D.hx b/src/nme/geom/Matrix3D.hx index 4e19f03e7..a17a95609 100644 --- a/src/nme/geom/Matrix3D.hx +++ b/src/nme/geom/Matrix3D.hx @@ -615,6 +615,7 @@ class Matrix3D } } + #if sys public function print() { Sys.println('[ $mxx $mxy $mxz | $tx ]'); @@ -622,6 +623,7 @@ class Matrix3D Sys.println('[ $mzx $mzy $mzz | $tz ]'); Sys.println('[ $mwx $mwy $mwz | $tw ]'); } + #end inline public function transpose():Void {