CIVector.Create Method

Definition

Overloads

Create(CGAffineTransform)

Creates a vector from a CGAffineTransform.

Create(CGPoint)

Creates a CGAffineTransform that represents a directed distance from the origin to point.

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 x value.

Create(nfloat, nfloat)

Creates a vector with the specified x and y values.

Create(nfloat, nfloat, nfloat)

Creates a vector with the specified x, y, and z values.

Create(nfloat, nfloat, nfloat, nfloat)

Creates a vector with the specified x, y, and z, and w values.

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)

Creates a vector with the specified x and y values.

[Foundation.Export("vectorWithX:Y:")]
public static CoreImage.CIVector Create (nfloat x, nfloat y);
static member Create : nfloat * nfloat -> CoreImage.CIVector

Parameters

x
nfloat
y
nfloat

Returns

Attributes

Applies to

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

Applies to