Skip to content

Commit

Permalink
Example: Use print() method on matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
Joakim Gebart committed Apr 8, 2012
1 parent a1cea48 commit 803aa32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Arduino3DExample/Arduino3DExample.ino
Expand Up @@ -266,9 +266,9 @@ void loop(void)
Serial.print(us);
Serial.println(" microseconds taken");
Serial.println("Model to world:");
printMatrix4f(ModelWorldMatrix);
ModelWorldMatrix.print(Serial);
Serial.println("World to view:");
printMatrix4f(WorldViewMatrix);
WorldViewMatrix.print(Serial);
Serial.println("Draw cube");
us = micros();
#endif
Expand Down

0 comments on commit 803aa32

Please sign in to comment.