updates
This commit is contained in:
@@ -2,8 +2,7 @@
|
||||
#include "lib/djstdlib/core.h"
|
||||
#include "debug.h"
|
||||
|
||||
void printRLVec3(RLVector3* vector) {
|
||||
RLVector3 vec = *vector;
|
||||
void printRLVec3(RLVector3 vec) {
|
||||
print(
|
||||
"┌ ┐\n"
|
||||
"│%7.2f%, %7.2f, %7.2f │\n"
|
||||
@@ -11,8 +10,7 @@ void printRLVec3(RLVector3* vector) {
|
||||
vec.x, vec.y, vec.z);
|
||||
}
|
||||
|
||||
void printMatrix(Matrix* matrix) {
|
||||
Matrix mat = *matrix;
|
||||
void printMatrix(Matrix mat) {
|
||||
print(
|
||||
"┌ ┐\n"
|
||||
"│%7.2f%, %7.2f, %7.2f, %7.2f │\n"
|
||||
|
||||
Reference in New Issue
Block a user