CIVector.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(CGAffineTransform) |
Creates a vector from a CGAffineTransform. |
Create(CGPoint) |
Creates a CGAffineTransform that represents a directed distance from the origin to |
Create(CGRect) |
Creates a CGAffineTransform that stores the X-coordinate, Y-coordinate, height, and width in the X, Y. Z, and W properties, respectively. |
Create(nfloat) |
Creates a vector with the specified |
Create(nfloat, nfloat) |
Creates a vector with the specified |
Create(nfloat, nfloat, nfloat) |
Creates a vector with the specified |
Create(nfloat, nfloat, nfloat, nfloat) |
Creates a vector with the specified |
Create(CGAffineTransform)
Creates a vector from a CGAffineTransform.
[Foundation.Export("vectorWithCGAffineTransform:")]
public static CoreImage.CIVector Create (CoreGraphics.CGAffineTransform affineTransform);
static member Create : CoreGraphics.CGAffineTransform -> CoreImage.CIVector
Parameters
- affineTransform
- CGAffineTransform
Returns
- Attributes
Applies to
Create(CGPoint)
Creates a CGAffineTransform that represents a directed distance from the origin to point
.
[Foundation.Export("vectorWithCGPoint:")]
public static CoreImage.CIVector Create (CoreGraphics.CGPoint point);
static member Create : CoreGraphics.CGPoint -> CoreImage.CIVector
Parameters
- point
- CGPoint
Returns
- Attributes
Applies to
Create(CGRect)
Creates a CGAffineTransform that stores the X-coordinate, Y-coordinate, height, and width in the X, Y. Z, and W properties, respectively.
[Foundation.Export("vectorWithCGRect:")]
public static CoreImage.CIVector Create (CoreGraphics.CGRect point);
static member Create : CoreGraphics.CGRect -> CoreImage.CIVector
Parameters
- point
- CGRect
Returns
- Attributes
Applies to
Create(nfloat)
Creates a vector with the specified x
value.
[Foundation.Export("vectorWithX:")]
public static CoreImage.CIVector Create (nfloat x);
static member Create : nfloat -> CoreImage.CIVector
Parameters
- x
- nfloat
Returns
- Attributes
Applies to
Create(nfloat, nfloat)
Create(nfloat, nfloat, nfloat)
Creates a vector with the specified x
, y
, and z
values.
[Foundation.Export("vectorWithX:Y:Z:")]
public static CoreImage.CIVector Create (nfloat x, nfloat y, nfloat z);
static member Create : nfloat * nfloat * nfloat -> CoreImage.CIVector
Parameters
- x
- nfloat
- y
- nfloat
- z
- nfloat
Returns
- Attributes
Applies to
Create(nfloat, nfloat, nfloat, nfloat)
Creates a vector with the specified x
, y
, and z
, and w
values.
[Foundation.Export("vectorWithX:Y:Z:W:")]
public static CoreImage.CIVector Create (nfloat x, nfloat y, nfloat z, nfloat w);
static member Create : nfloat * nfloat * nfloat * nfloat -> CoreImage.CIVector
Parameters
- x
- nfloat
- y
- nfloat
- z
- nfloat
- w
- nfloat
Returns
- Attributes