CIVector Class Reference
| Inherits from | |
| Conforms to | |
| Framework | Library/Frameworks/CoreImage.framework |
| Availability | Available in OS X v10.4 and later. |
| Companion guide | |
| Declared in | CIVector.h |
Overview
The CIVector class is used for coordinate values and direction vectors. You typically use a CIVector object to pass parameter values to Core Image filters. CIVector objects work in conjunction with other Core Image classes, such as CIFilter, CIContext, CIImage, and CIColor, to process images using the Core Image framework.
Tasks
Creating a Vector
-
+ vectorWithValues:count: -
+ vectorWithX: -
+ vectorWithX:Y: -
+ vectorWithX:Y:Z: -
+ vectorWithX:Y:Z:W: -
+ vectorWithString:
Initializing a Vector
-
– initWithValues:count: -
– initWithX: -
– initWithX:Y: -
– initWithX:Y:Z: -
– initWithX:Y:Z:W: -
– initWithString:
Getting Values From a Vector
Class Methods
vectorWithString:
Creates and returns a vector that is initialized with values provided in a string representation.
Parameters
- representation
A string that is in one of the formats returned by the
stringRepresentationmethod.
Discussion
Some typical string representations for vectors are:
@"[1.0 0.5 0.3]"
which specifies a vec3 vector whose components are X = 1.0, Y = 0.5, and Z = 0.3
@"[10.0 23.0]
which specifies a vec2 vector show components are X = 10.0 and Y = 23.0
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
CIVector.hvectorWithValues:count:
Creates and returns a vector that is initialized with the specified values.
Parameters
- values
The values to initialize the vector with.
- count
The number of values in the vector.
Return Value
A vector initialized with the provided values.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hvectorWithX:
Creates and returns a vector that is initialized with one value.
Parameters
- x
The value to initialize the vector with.
Return Value
A vector initialized with the specified value.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hvectorWithX:Y:
Creates and returns a vector that is initialized with two values.
Parameters
- x
The value for the first position in the vector.
- y
The value for the second position in the vector.
Return Value
A vector initialized with the specified values.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hvectorWithX:Y:Z:
Creates and returns a vector that is initialized with three values.
Parameters
- x
The value for the first position in the vector.
- y
The value for the second position in the vector.
- z
The value for the third position in the vector.
Return Value
A vector initialized with the specified values.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hvectorWithX:Y:Z:W:
Creates and returns a vector that is initialized with four values.
Parameters
- x
The value for the first position in the vector.
- y
The value for the second position in the vector.
- z
The value for the third position in the vector.
- w
The value for the fourth position in the vector.
Return Value
A vector initialized with the specified values.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hInstance Methods
count
Returns the number of items in a vector.
Return Value
The number of items in the vector.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hinitWithString:
Initializes a vector with values provided in a string representation.
Parameters
- representation
A string that is in one of the formats returned by the
stringRepresentationmethod.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
CIVector.hinitWithValues:count:
Initializes a vector with the provided values.
Parameters
- values
The values to initialize the vector with.
- count
The number of values specified by the
valuesargument.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hinitWithX:
Initializes the first position of a vector with the provided values.
Parameters
- x
The initialization value.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hinitWithX:Y:
Initializes the first two positions of a vector with the provided values.
Parameters
- x
The initialization value for the first position.
- y
The initialization value for the second position.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hinitWithX:Y:Z:
Initializes the first three positions of a vector with the provided values.
Parameters
- x
The initialization value for the first position.
- y
The initialization value for the second position.
- z
The initialization value for the third position.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hinitWithX:Y:Z:W:
Initializes four positions of a vector with the provided values.
Parameters
- x
The initialization value for the first position.
- y
The initialization value for the second position.
- z
The initialization value for the third position.
- w
The initialization value for the fourth position.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hstringRepresentation
Returns a string representation for a vector.
Return Value
A string object.
Discussion
You convert the string representation returned by this method to a vector by supplying it as a parameter to the vectorWithString: method.
Some typical string representations for vectors are:
@"[1.0 0.5 0.3]"
which specifies a vec3 vector whose components are X = 1.0, Y = 0.5, and Z = 0.3
@"[10.0 23.0]
which specifies a vec2 vector show components are X = 10.0 and Y = 23.0
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
CIVector.hvalueAtIndex:
Returns a value from a specific position in a vector.
Parameters
- index
The position in the vector of the value that you want to retrieve.
Return Value
The value retrieved from the vector or 0 if the position is undefined.
Discussion
The numbering of elements in a vector begins with zero.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hW
Returns the value located in the fourth position in a vector.
Return Value
The value retrieved from the vector.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hX
Returns the value located in the first position in a vector.
Return Value
The value retrieved from the vector.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hY
Returns the value located in the second position in a vector.
Return Value
The value retrieved from the vector.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.hZ
Returns the value located in the third position in a vector.
Return Value
The value retrieved from the vector.
Availability
- Available in OS X v10.4 and later.
Declared In
CIVector.h© 2011 Apple Inc. All Rights Reserved. (Last updated: 2011-10-12)