This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Proper Float3 constructors.
legacy
Sam Hocevar
sam
14 years ago
parent
0fdf9b6874
commit
6223c37bb2
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
src/matrix.h
+ 3
- 0
src/matrix.h
View File
@@ -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;
};
Write
Preview
Loading…
Cancel
Save