Quellcode durchsuchen

Proper Float3 constructors.

legacy
Sam Hocevar sam vor 14 Jahren
Ursprung
Commit
6223c37bb2
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      src/matrix.h

+ 3
- 0
src/matrix.h Datei anzeigen

@@ -21,6 +21,9 @@ struct Float2

struct Float3
{
Float3() { x = y = z = 0.0f; }
Float3(float _x, float _y, float _z) { x = _x; y = _y; z = _z; }

float x, y, z;
};



Laden…
Abbrechen
Speichern