Skip to content

Commit

Permalink
Only use println on sys platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Dec 1, 2023
1 parent 5a9c658 commit 25908ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/nme/geom/Matrix3D.hx
Original file line number Diff line number Diff line change
Expand Up @@ -615,13 +615,15 @@ class Matrix3D
}
}

#if sys
public function print()
{
Sys.println('[ $mxx $mxy $mxz | $tx ]');
Sys.println('[ $myx $myy $myz | $ty ]');
Sys.println('[ $mzx $mzy $mzz | $tz ]');
Sys.println('[ $mwx $mwy $mwz | $tw ]');
}
#end

inline public function transpose():Void
{
Expand Down

0 comments on commit 25908ef

Please sign in to comment.