Difference between revisions of "Vector"
Jump to navigation
Jump to search
Outerbeast (talk | contribs) m |
Outerbeast (talk | contribs) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Vectors are essentially float arrays of size 3 which are used to represent various quanties like spatial co-ordinates, angles, velocities and colours, and so will come up very often. | Vectors are essentially float arrays of size 3 which are used to represent various quanties like spatial co-ordinates, angles, velocities and colours, and so will come up very often. | ||
− | A | + | A vector can be instanced with the <code>Vector</code> data type, like so: |
<pre>Vector vec(1, 2, 3);</pre> | <pre>Vector vec(1, 2, 3);</pre> | ||
Each vector component can be accessed via the fields x, y and z, which are of type <code>float</code> | Each vector component can be accessed via the fields x, y and z, which are of type <code>float</code> | ||
Line 16: | Line 16: | ||
vec[2] // vec.z | vec[2] // vec.z | ||
</pre> | </pre> | ||
+ | |||
+ | There is also a <code>Vector2D</code> which simply has the <code>z</code> component absent but its usage is identical. | ||
Operations such as dot product and cross product can be performed on vectors using these global functions: | Operations such as dot product and cross product can be performed on vectors using these global functions: | ||
Line 100: | Line 102: | ||
|- | |- | ||
| <code>string ToString() const | | <code>string ToString() const | ||
− | | style="vertical-align:middle;" | Returns a string representation of this vector in the format "x, y, z" | + | | style="vertical-align:middle;" | Returns a string representation of this vector in the format <code>"x, y, z"</code> |
|} | |} | ||
== Constants == | == Constants == | ||
+ | These constants exist in global scope. | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 109: | Line 112: | ||
! Value | ! Value | ||
|- | |- | ||
− | | const Vector g_vecZero | + | | <code>const Vector g_vecZero |
| style="vertical-align:middle;" | Zero vector (0, 0, 0) | | style="vertical-align:middle;" | Zero vector (0, 0, 0) | ||
|- | |- | ||
− | | const Vector VEC_HULL_MIN | + | | <code>const Vector VEC_HULL_MIN |
− | | style="vertical-align:middle;" | Default hull minimum. Used with CEntityFuncs::SetSize<br />Value: (-16.0, -16.0, -36.0) | + | | style="vertical-align:middle;" | Default hull minimum. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (-16.0, -16.0, -36.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_HULL_MAX |
− | | Default hull maximum. Used with CEntityFuncs::SetSize<br />Value: (16.0, 16.0, 36.0) | + | | Default hull maximum. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (16.0, 16.0, 36.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_HUMAN_HULL_MIN |
− | | Default human hull maximum. Used with CEntityFuncs::SetSize<br />Value: (-16.0, -16.0, 0.0) | + | | Default human hull maximum. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (-16.0, -16.0, 0.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_HUMAN_HULL_MAX |
− | | | + | | Default human hull maximum while standing. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br/>Value: (16.0, 16.0, 72.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_HUMAN_HULL_DUCK |
− | | Default human hull maximum while ducking. Used with CEntityFuncs::SetSize<br />Value: (16.0, 16.0, 36.0) | + | | Default human hull maximum while ducking. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (16.0, 16.0, 36.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_VIEW |
| View offset.<br />Value: (0.0, 0.0, 28.0) | | View offset.<br />Value: (0.0, 0.0, 28.0) | ||
|- | |- | ||
− | | | + | | <code>const Vector VEC_DUCK_HULL_MIN |
− | | Hull minimum while ducking. Used with CEntityFuncs::SetSize<br />Value: (-16.0, -16.0, -18.0) | + | | Hull minimum while ducking. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (-16.0, -16.0, -18.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_DUCK_HULL_MAX |
− | | Hull maximum while ducking. Used with CEntityFuncs::SetSize<br />Value: (16.0, 16.0, 18.0) | + | | Hull maximum while ducking. Used with [[CEntityFuncs#SetSize|CEntityFuncs::SetSize]]<br />Value: (16.0, 16.0, 18.0) |
|- | |- | ||
− | | | + | | <code>const Vector VEC_DUCK_VIEW |
| Hull view offset while ducking.<br />Value: (0.0, 0.0, 12.0) | | Hull view offset while ducking.<br />Value: (0.0, 0.0, 12.0) | ||
|- | |- | ||
− | | const Vector VECTOR_CONE_9DEGREES | + | | <code>const Vector VECTOR_CONE_9DEGREES |
| style="vertical-align:middle;" | (0.078460, 0.078460, 0.078460) | | style="vertical-align:middle;" | (0.078460, 0.078460, 0.078460) | ||
|- | |- | ||
− | | const Vector VECTOR_CONE_10DEGREES | + | | <code>const Vector VECTOR_CONE_10DEGREES |
| style="vertical-align:middle;" | (0.087160, 0.087160, 0.087160) | | style="vertical-align:middle;" | (0.087160, 0.087160, 0.087160) | ||
|- | |- | ||
− | | const Vector VECTOR_CONE_15DEGREES | + | | <code>const Vector VECTOR_CONE_15DEGREES |
| style="vertical-align:middle;" | (0.130530, 0.130530, 0.130530) | | style="vertical-align:middle;" | (0.130530, 0.130530, 0.130530) | ||
|- | |- | ||
− | | const Vector VECTOR_CONE_20DEGREES | + | | <code>const Vector VECTOR_CONE_20DEGREES |
| style="vertical-align:middle;" | (0.173650, 0.173650, 0.173650) | | style="vertical-align:middle;" | (0.173650, 0.173650, 0.173650) | ||
|} | |} | ||
[[Category:Scripting]] | [[Category:Scripting]] |
Latest revision as of 19:09, 27 March 2025
Vectors are essentially float arrays of size 3 which are used to represent various quanties like spatial co-ordinates, angles, velocities and colours, and so will come up very often.
A vector can be instanced with the Vector
data type, like so:
Vector vec(1, 2, 3);
Each vector component can be accessed via the fields x, y and z, which are of type float
vec.x // 1.0 vec.y // 2.0 vec.z // 3.0
These components are also accessible via the index operator:
vec[0] // vec.x vec[1] // vec.y vec[2] // vec.z
There is also a Vector2D
which simply has the z
component absent but its usage is identical.
Operations such as dot product and cross product can be performed on vectors using these global functions:
Function | Description |
---|---|
float DotProduct(const Vector2D& in lhs, const Vector2D& in rhs)
|
Returns a dot product of the given 2D vectors |
float DotProduct(const Vector& in lhs, const Vector& in rhs)
|
Returns the dot product of the given vectors |
Vector CrossProduct(const Vector& in, const Vector& in)
|
Returns the cross product of the given vectors |
1 Methods
Method | Description |
---|---|
void Vector()
|
Default constructs a 3D vector (0, 0, 0) |
void Vector(const Vector& in vec)
|
Copy constructs a 3D vector |
void Vector(float x, float y, float z)
|
Constructs a 3D vector from 3 floats |
Vector& opAssign(const Vector& in other)
|
Assign vector |
Vector opNeg() const
|
Negate vector |
Vector opAdd(const Vector& in other) const
|
Add vectors |
Vector opSub(const Vector& in other) const
|
Subtract vectors |
Vector opMul(float fl) const
|
Multiply vector by value |
Vector opMul_r(float fl) const
|
Multiply vector by value |
Vector opDiv(float fl) const
|
Divide vector by value |
Vector opDiv_r(float fl) const
|
Divide vector by value |
float& opIndex(size_t uiIndex)
|
Index operator |
float opIndex(size_t uiIndex) const
|
Index operator |
bool opEquals(const Vector& in other) const
|
Compare vectors |
Vector opMul(const Vector& in other) const
|
Multiply vectors |
Vector opDiv(const Vector& in other) const
|
Divide vectors |
float Length() const
|
Gets the length of this vector |
float Length2D() const
|
Gets the length of this vector in 2D |
Vector Normalize() const
|
Returns the normalized form of this vector |
Vector2D Make2D() const
|
Returns the 2D form of this vector |
string ToString() const
|
Returns a string representation of this vector in the format "x, y, z"
|
2 Constants
These constants exist in global scope.
Constant | Value |
---|---|
const Vector g_vecZero
|
Zero vector (0, 0, 0) |
const Vector VEC_HULL_MIN
|
Default hull minimum. Used with CEntityFuncs::SetSize Value: (-16.0, -16.0, -36.0) |
const Vector VEC_HULL_MAX
|
Default hull maximum. Used with CEntityFuncs::SetSize Value: (16.0, 16.0, 36.0) |
const Vector VEC_HUMAN_HULL_MIN
|
Default human hull maximum. Used with CEntityFuncs::SetSize Value: (-16.0, -16.0, 0.0) |
const Vector VEC_HUMAN_HULL_MAX
|
Default human hull maximum while standing. Used with CEntityFuncs::SetSize Value: (16.0, 16.0, 72.0) |
const Vector VEC_HUMAN_HULL_DUCK
|
Default human hull maximum while ducking. Used with CEntityFuncs::SetSize Value: (16.0, 16.0, 36.0) |
const Vector VEC_VIEW
|
View offset. Value: (0.0, 0.0, 28.0) |
const Vector VEC_DUCK_HULL_MIN
|
Hull minimum while ducking. Used with CEntityFuncs::SetSize Value: (-16.0, -16.0, -18.0) |
const Vector VEC_DUCK_HULL_MAX
|
Hull maximum while ducking. Used with CEntityFuncs::SetSize Value: (16.0, 16.0, 18.0) |
const Vector VEC_DUCK_VIEW
|
Hull view offset while ducking. Value: (0.0, 0.0, 12.0) |
const Vector VECTOR_CONE_9DEGREES
|
(0.078460, 0.078460, 0.078460) |
const Vector VECTOR_CONE_10DEGREES
|
(0.087160, 0.087160, 0.087160) |
const Vector VECTOR_CONE_15DEGREES
|
(0.130530, 0.130530, 0.130530) |
const Vector VECTOR_CONE_20DEGREES
|
(0.173650, 0.173650, 0.173650) |