diff options
| author | Simon <simon@hardwired.org.uk> | 2011-04-08 10:09:42 (GMT) |
|---|---|---|
| committer | Simon <simon@hardwired.org.uk> | 2011-04-08 10:09:42 (GMT) |
| commit | 767d73c5fc51647dcb5da4ed8349da2186c5060c (patch) | |
| tree | e9cb3540858927af4887553068fd348a95195092 /includes/misc.h | |
| parent | 1bdf72be1a306ac07641211adb2ec1539e3d0a48 (diff) | |
| download | powder-767d73c5fc51647dcb5da4ed8349da2186c5060c.zip powder-767d73c5fc51647dcb5da4ed8349da2186c5060c.tar.gz | |
astyle
Diffstat (limited to 'includes/misc.h')
| -rw-r--r-- | includes/misc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/includes/misc.h b/includes/misc.h index a372648..c3ba03e 100644 --- a/includes/misc.h +++ b/includes/misc.h @@ -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); |
