GLKVector3 Reference
| Framework | GLKit/GLKMath.h |
| Declared in | GLKMathTypes.h GLKVector3.h |
Overview
The GLKVector3 type defines a 3-component floating-point vector as well as many mathematical operations commonly used to manipulate vectors. Graphics programming uses vectors extensively to represent positions, normals, colors and other data structures.
The functions that manipulate GLKVector3 structures treat the inputs as immutable, instead returning a new vector that represent the results of the operation.
Functions by Task
Creating Vectors
Retrieving Information About a Vector
Mathematical Operations Performed on Vectors
-
GLKVector3Negate -
GLKVector3Normalize -
GLKVector3AddScalar -
GLKVector3SubtractScalar -
GLKVector3MultiplyScalar -
GLKVector3DivideScalar -
GLKVector3Add -
GLKVector3Subtract -
GLKVector3Multiply -
GLKVector3Divide -
GLKVector3DotProduct -
GLKVector3CrossProduct -
GLKVector3Lerp -
GLKVector3Project -
GLKVector3Maximum -
GLKVector3Minimum
Comparison Operations
Functions
GLKVector3Add
Returns the sum of two vectors.
GLKVector3 GLKVector3Add ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
A new vector whose components each represent the sum of the two components found in the same positions of the two source vectors.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AddScalar
Returns a new vector created by adding a scalar value to each component of a vector.
GLKVector3 GLKVector3AddScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar value.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllEqualToScalar
Returns a Boolean value that states whether all the components of the source vector are equal to a scalar value.
bool GLKVector3AllEqualToScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar.
Return Value
YES if all of the vector’s components are equal to value, NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllEqualToVector3
Returns a Boolean value that indicates whether each component of the first vector is equal to the corresponding component of a second vector.
bool GLKVector3AllEqualToVector3 ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
YES if all of the vectors’ components are equal , NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllGreaterThanOrEqualToScalar
Returns a Boolean value that states whether all the components of the source vector are greater than or equal to a scalar value.
bool GLKVector3AllGreaterThanOrEqualToScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar.
Return Value
YES if all of the vector’s components are greater than or equal to the scalar value, NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllGreaterThanOrEqualToVector3
Returns a Boolean value that indicates whether each component of the first vector is greater than or equal to the corresponding component of a second vector.
bool GLKVector3AllGreaterThanOrEqualToVector3 ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
YES if each component in the first vector is greater than or equal to the corresponding component of the second vector, NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllGreaterThanScalar
Returns a Boolean value that states whether all the components of the source vector are greater than a scalar value.
bool GLKVector3AllGreaterThanScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar.
Return Value
YES if all of the vector’s components are greater than the scalar value, NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3AllGreaterThanVector3
Returns a Boolean value that indicates whether each component of the first vector is greater than the corresponding component of a second vector.
bool GLKVector3AllGreaterThanVector3 ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
YES if each component in the first vector is greater than the corresponding component of the second vector, NO otherwise.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3CrossProduct
Returns the cross product of two vectors.
GLKVector3 GLKVector3CrossProduct ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Distance
Returns the distance between two points.
float GLKVector3Distance ( GLKVector3 vectorStart, GLKVector3 vectorEnd );
Parameters
- vectorStart
A vector providing the coordinates of the starting point.
- vectorEnd
A vector providing the coordinates of the ending point.
Return Value
The distance between the two points.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Divide
Returns a new vector created by dividing one vector by another.
GLKVector3 GLKVector3Divide ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The dividend.
Return Value
A new vector whose components are each calculated by dividing the component found in same position of the first vector by the component found in the same position of the second vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3DivideScalar
Returns a new vector created by dividing each component of a vector by a scalar value.
GLKVector3 GLKVector3DivideScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar value.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3DotProduct
Returns the dot product of two vectors.
float GLKVector3DotProduct ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
The dot product of the two vectors.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Length
Returns the length of a vector.
float GLKVector3Length ( GLKVector3 vector );
Parameters
- vector
A vector.
Return Value
The length of the vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Lerp
Returns a new vector created by linearly interpreting between two vectors.
GLKVector3 GLKVector3Lerp ( GLKVector3 vectorStart, GLKVector3 vectorEnd, float t );
Parameters
- vectorStart
The starting vector.
- vectorEnd
The ending vector.
- t
An interpolation constant.
Return Value
A new vector.
Discussion
The value of t should typically be between 0.0 and 1.0. A value of 0.0 returns the starting vector and a value of 1.0 returns the ending vector. Any other value of t results in a linear interpolation between the two points.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Make
Returns a new three-component vector created from individual component values.
GLKVector3 GLKVector3Make ( float x, float y, float z );
Parameters
- x
The first component.
- y
The second component.
- z
The third component.
Return Value
An initialized vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3MakeWithArray
Returns a new three-component vector created from an array of components.
GLKVector3 GLKVector3MakeWithArray ( float values[3] );
Parameters
- values
The array containing the component values.
Return Value
The array.
Discussion
An initialized vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Maximum
Returns a new vector whose component value at each position is the largest component value at the same position in the source vectors.
GLKVector3 GLKVector3Maximum ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Minimum
Returns a new vector whose component value at each position is the smallest component value at the same position in the source vectors.
GLKVector3 GLKVector3Minimum ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Multiply
Returns the product of two vectors.
GLKVector3 GLKVector3Multiply ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The first vector.
- vectorRight
The second vector.
Return Value
A new vector whose components each represent the product of the components found in the same positions of the two source vectors.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3MultiplyScalar
Returns a new vector created by multiplying each component of a vector by a scalar value.
GLKVector3 GLKVector3MultiplyScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar value.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Negate
Returns a new vector created by negating the component values of another vector.
GLKVector3 GLKVector3Negate ( GLKVector3 vector );
Parameters
- vector
A vector.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Normalize
Returns a new vector created by normalizing the input vector to a length of 1.0.
GLKVector3 GLKVector3Normalize ( GLKVector3 vector );
Parameters
- vector
A vector.
Return Value
A new vector.
Discussion
The resulting vector points in the same direction as the input vector, but has a length of 1.0.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Project
Returns a new vector created by projecting a vector onto another vector.
GLKVector3 GLKVector3Project ( GLKVector3 vectorToProject, GLKVector3 projectionVector );
Parameters
- vectorToProject
The vector being projected.
- projectionVector
The projection vector.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3Subtract
Returns the difference between two vectors.
GLKVector3 GLKVector3Subtract ( GLKVector3 vectorLeft, GLKVector3 vectorRight );
Parameters
- vectorLeft
The starting vector.
- vectorRight
The vector to subtract.
Return Value
A new vector whose components each represent the difference between the components found in the same positions of the two source vectors.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hGLKVector3SubtractScalar
Returns a new vector created by subtracting a scalar value from each component of a vector.
GLKVector3 GLKVector3SubtractScalar ( GLKVector3 vector, float value );
Parameters
- vector
A vector.
- value
A scalar value.
Return Value
A new vector.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKVector3.hData Types
GLKVector3
A representation of a 3-component vector.
union _GLKVector3
{
struct { float x, y, z; };
struct { float r, g, b; };
struct { float s, t, p; };
float v[3];
};
typedef union _GLKVector3 GLKVector3;
Fields
xThe first component in the vector. Typically used when the vector refers to a position or a normal.
yThe second component in the vector. Typically used when the vector refers to a position or a normal.
zThe third component in the vector. Typically used when the vector refers to a position or a normal.
rThe first component in the vector. Typically used when the vector refers to a color value.
gThe second component in the vector. Typically used when the vector refers to a color value.
bThe third component in the vector. Typically used when the vector refers to a color value.
sThe first component in the vector. Typically used when the vector refers to texture coordinates.
tThe second component in the vector. Typically used when the vector refers to texture coordinates.
pThe third component in the vector. Typically used when the vector refers to texture coordinates.
vThe elements of the vector expressed as an array.
Availability
- Available in iOS 5.0 and later.
Declared In
GLKMathTypes.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-07-17)