diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-06-12 04:30:37 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-06-12 04:30:37 +0000 |
| commit | 7a5c2259ed8ae79305bee53a3eba0bf864458698 (patch) | |
| tree | 98e4794b2776210aa6731477a5baa63fd50aa777 /Common/interface | |
| parent | Fixed folder name (Core -> DiligentCore) for external projects (diff) | |
| download | DiligentCore-7a5c2259ed8ae79305bee53a3eba0bf864458698.tar.gz DiligentCore-7a5c2259ed8ae79305bee53a3eba0bf864458698.zip | |
Mathlib: added double2, double3, and double4 typedefs
Diffstat (limited to 'Common/interface')
| -rw-r--r-- | Common/interface/BasicMath.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Common/interface/BasicMath.h b/Common/interface/BasicMath.h index 36552258..29f67d7f 100644 --- a/Common/interface/BasicMath.h +++ b/Common/interface/BasicMath.h @@ -1559,6 +1559,10 @@ using float2 = Vector2<float>; using float3 = Vector3<float>; using float4 = Vector4<float>; +using double2 = Vector2<double>; +using double3 = Vector3<double>; +using double4 = Vector4<double>; + using float4x4 = Matrix4x4<float>; using float3x3 = Matrix3x3<float>; using float2x2 = Matrix2x2<float>; |
