mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-13 03:44:05 +02:00
astyle
This commit is contained in:
@@ -79,11 +79,15 @@ int cpu_check(void);
|
||||
|
||||
// a b
|
||||
// c d
|
||||
struct matrix2d {float a,b,c,d;};
|
||||
struct matrix2d {
|
||||
float a,b,c,d;
|
||||
};
|
||||
typedef struct matrix2d matrix2d;
|
||||
|
||||
// column vector
|
||||
struct vector2d {float x,y;};
|
||||
struct vector2d {
|
||||
float x,y;
|
||||
};
|
||||
typedef struct vector2d vector2d;
|
||||
|
||||
matrix2d m2d_multiply_m2d(matrix2d m1, matrix2d m2);
|
||||
|
Reference in New Issue
Block a user