vectorWithValues:count:
Create a Core Image vector object that is initialized with the specified values.
Declaration
+ (instancetype) vectorWithValues:(const CGFloat *) values count:(size_t) count;Parameters
- values:
The pointer
CGFloatvalues to initialize the vector with. - count:
The number of
CGFloatsspecified by thevaluesparameter.
Return Value
An autoreleased CIVector object of length count.