1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/source/Base/Vector3.hpp

313 lines
9.5 KiB
C++
Raw Normal View History

2015-09-30 02:56:11 +02:00
#ifndef _BASE_VECTOR3_HPP_
#define _BASE_VECTOR3_HPP_
// ------------------------------------------------------------------------------------------------
#include "SqBase.hpp"
2015-09-30 02:56:11 +02:00
// ------------------------------------------------------------------------------------------------
namespace SqMod {
/* ------------------------------------------------------------------------------------------------
*
2015-09-30 02:56:11 +02:00
*/
struct Vector3
{
/* --------------------------------------------------------------------------------------------
* ...
*/
typedef float Value;
/* --------------------------------------------------------------------------------------------
* ...
*/
2015-09-30 02:56:11 +02:00
static const Vector3 NIL;
static const Vector3 MIN;
static const Vector3 MAX;
/* --------------------------------------------------------------------------------------------
* ...
*/
2015-09-30 02:56:11 +02:00
static SQChar Delim;
/* --------------------------------------------------------------------------------------------
* ...
*/
2015-09-30 02:56:11 +02:00
Value x, y, z;
/* --------------------------------------------------------------------------------------------
*
*/
Vector3();
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3(Value sv);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3(Value xv, Value yv, Value zv);
/* --------------------------------------------------------------------------------------------
*
*/
Vector3(const Vector3 & o);
/* --------------------------------------------------------------------------------------------
*
*/
2015-09-30 02:56:11 +02:00
~Vector3();
/* --------------------------------------------------------------------------------------------
*
*/
Vector3 & operator = (const Vector3 & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator = (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator = (const Vector4 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator = (const Quaternion & q);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator += (const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator -= (const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator *= (const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator /= (const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator %= (const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator += (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator -= (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator *= (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator /= (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator %= (Value s);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator ++ ();
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 & operator -- ();
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator ++ (int);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator -- (int);
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator + (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator - (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator * (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator / (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator % (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator + (Value s) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator - (Value s) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator * (Value s) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator / (Value s) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator % (Value s) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator + () const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 operator - () const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator == (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator != (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator < (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator > (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator <= (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
bool operator >= (const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
Int32 Cmp(const Vector3 & v) const;
/* --------------------------------------------------------------------------------------------
* ...
*/
CSStr ToString() const;
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(Value ns);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(Value nx, Value ny, Value nz);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(const Vector3 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(const Vector4 & v);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(const Quaternion & q);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Set(CSStr values, SQChar delim);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Generate();
/* --------------------------------------------------------------------------------------------
* ...
*/
void Generate(Value min, Value max);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Generate(Value xmin, Value xmax, Value ymin, Value ymax, Value zmin, Value zmax);
/* --------------------------------------------------------------------------------------------
* ...
*/
void Clear()
{
x = 0.0, y = 0.0, z = 0.0;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Vector3 Abs() const;
2015-09-30 02:56:11 +02:00
};
} // Namespace:: SqMod
#endif // _BASE_VECTOR3_HPP_