diff options
Diffstat (limited to 'Source/Asura.Engine/Math')
-rw-r--r-- | Source/Asura.Engine/Math/Curve.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Curve.h | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Functions.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Functions.h | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Matrix44.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Matrix44.h | 24 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/RangedValue.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/RangedValue.h | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector2.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector2.h | 17 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector3.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector3.h | 17 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector4.cpp | 0 | ||||
-rw-r--r-- | Source/Asura.Engine/Math/Vector4.h | 17 |
14 files changed, 75 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Math/Curve.cpp b/Source/Asura.Engine/Math/Curve.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Curve.cpp diff --git a/Source/Asura.Engine/Math/Curve.h b/Source/Asura.Engine/Math/Curve.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Curve.h diff --git a/Source/Asura.Engine/Math/Functions.cpp b/Source/Asura.Engine/Math/Functions.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Functions.cpp diff --git a/Source/Asura.Engine/Math/Functions.h b/Source/Asura.Engine/Math/Functions.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Functions.h diff --git a/Source/Asura.Engine/Math/Matrix44.cpp b/Source/Asura.Engine/Math/Matrix44.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Matrix44.cpp diff --git a/Source/Asura.Engine/Math/Matrix44.h b/Source/Asura.Engine/Math/Matrix44.h new file mode 100644 index 0000000..5bc44e7 --- /dev/null +++ b/Source/Asura.Engine/Math/Matrix44.h @@ -0,0 +1,24 @@ +#ifndef __AE_MATRIX44_H__ +#define __AE_MATRIX44_H__ + +namespace AsuraEngine +{ + namespace Math + { + + /// + /// 4x4 + /// + class Matrix44 + { + public: + + private: + + + }; + + } +} + +#endif
\ No newline at end of file diff --git a/Source/Asura.Engine/Math/RangedValue.cpp b/Source/Asura.Engine/Math/RangedValue.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/RangedValue.cpp diff --git a/Source/Asura.Engine/Math/RangedValue.h b/Source/Asura.Engine/Math/RangedValue.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/RangedValue.h diff --git a/Source/Asura.Engine/Math/Vector2.cpp b/Source/Asura.Engine/Math/Vector2.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector2.cpp diff --git a/Source/Asura.Engine/Math/Vector2.h b/Source/Asura.Engine/Math/Vector2.h new file mode 100644 index 0000000..d5f8739 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector2.h @@ -0,0 +1,17 @@ +#ifndef __AE_VECTOR2_H__ +#define __AE_VECTOR2_H__ + +namespace AsuraEngine +{ + namespace Math + { + + class Vector2 + { + + }; + + } +} + +#endif
\ No newline at end of file diff --git a/Source/Asura.Engine/Math/Vector3.cpp b/Source/Asura.Engine/Math/Vector3.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector3.cpp diff --git a/Source/Asura.Engine/Math/Vector3.h b/Source/Asura.Engine/Math/Vector3.h new file mode 100644 index 0000000..14fdd88 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector3.h @@ -0,0 +1,17 @@ +#ifndef __AE_VECTOR3_H__ +#define __AE_VECTOR3_H__ + +namespace AsuraEngine +{ + namespace Math + { + + class Vector3 + { + + }; + + } +} + +#endif
\ No newline at end of file diff --git a/Source/Asura.Engine/Math/Vector4.cpp b/Source/Asura.Engine/Math/Vector4.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector4.cpp diff --git a/Source/Asura.Engine/Math/Vector4.h b/Source/Asura.Engine/Math/Vector4.h new file mode 100644 index 0000000..a6e8b38 --- /dev/null +++ b/Source/Asura.Engine/Math/Vector4.h @@ -0,0 +1,17 @@ +#ifndef __AE_VECTOR4_H__ +#define __AE_VECTOR4_H__ + +namespace AsuraEngine +{ + namespace Math + { + + class Vector4 + { + + }; + + } +} + +#endif
\ No newline at end of file |