More actions
Add extended description |
m spelling fail Tag: 2017 source edit |
||
Line 5: | Line 5: | ||
Vectors are one-dimensional; for example, a {{Type|Vector3}} holds 3 numbers. Vectors are most commonly used for representing the position and rotation of things. | Vectors are one-dimensional; for example, a {{Type|Vector3}} holds 3 numbers. Vectors are most commonly used for representing the position and rotation of things. | ||
Matrices are two-dimensional. All matrices are square, so a {{Type|Matrix3}} is a 3 by 3 grid of numbers. Matrices are most commonly used to represent transformations of vectors. For more in-depth information, see [[Wikipedia: | Matrices are two-dimensional. All matrices are square, so a {{Type|Matrix3}} is a 3 by 3 grid of numbers. Matrices are most commonly used to represent transformations of vectors. For more in-depth information, see [[Wikipedia:Transformation matrix|the Wikipedia article on transformation matrices]]. | ||
== Vectors == | == Vectors == |
Revision as of 18:21, 27 October 2024
Vectors and matrices at their core are a set of numbers that represent something (e.g. a Vector3 could represent a position in the world.)
Vectors are one-dimensional; for example, a Vector3 holds 3 numbers. Vectors are most commonly used for representing the position and rotation of things.
Matrices are two-dimensional. All matrices are square, so a Matrix3 is a 3 by 3 grid of numbers. Matrices are most commonly used to represent transformations of vectors. For more in-depth information, see the Wikipedia article on transformation matrices.
Vectors
Many functions that take in a vector will also take in the same amount of numbers and internally convert it into a Vector.
Vectors come in 3 types: Vector2, Vector3, and Vector4. You can create a vector by using the global method vec
as shown:
This method will return a vector based on how many arguments you input.
Matrices
Matrices are a set of vectors, which are normally used to change where models are, how they look, etc.
Documentation | |||||
---|---|---|---|---|---|
Globals | |||||
APIs (Types) | |||||
Visuals (Types) | |||||
Other Types | |||||
Enums |