diff options
| author | Halldor Fannar <[email protected]> | 2017-02-09 15:26:47 +0000 |
|---|---|---|
| committer | Halldor Fannar <[email protected]> | 2017-02-09 15:26:47 +0000 |
| commit | b814d180089b1e5415f89554e46de2edd978a592 (patch) | |
| tree | b6a61b518e2b567c7d485913a7fca54f6719bc5c /include/nv | |
| parent | Initial commit (diff) | |
| download | anselsdk-b814d180089b1e5415f89554e46de2edd978a592.tar.xz anselsdk-b814d180089b1e5415f89554e46de2edd978a592.zip | |
First publish of the SDK.
Diffstat (limited to 'include/nv')
| -rw-r--r-- | include/nv/Quat.h | 10 | ||||
| -rw-r--r-- | include/nv/Vec3.h | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/include/nv/Quat.h b/include/nv/Quat.h new file mode 100644 index 0000000..94a4b44 --- /dev/null +++ b/include/nv/Quat.h @@ -0,0 +1,10 @@ +#pragma once + +namespace nv +{ + struct Quat + { + float x, y, z, w; + }; +} + diff --git a/include/nv/Vec3.h b/include/nv/Vec3.h new file mode 100644 index 0000000..e7e7d86 --- /dev/null +++ b/include/nv/Vec3.h @@ -0,0 +1,12 @@ +#pragma once + +namespace nv +{ + +struct Vec3 +{ + float x, y, z; +}; + + +} // end of nv namspace
\ No newline at end of file |