MonobjcMonobjc Documented Class Library
Make Method (a, b, c, d, tx, ty)
NamespacesMonobjc.ApplicationServicesCGAffineTransformMake(Single, Single, Single, Single, Single, Single)

Returns an affine transformation matrix constructed from values you provide.

Original signature is : CGAffineTransform CGAffineTransformMake ( CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty );

Available in Mac OS X version 10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static CGAffineTransform Make(
	float a,
	float b,
	float c,
	float d,
	float tx,
	float ty
)
Public Shared Function Make ( _
	a As Single, _
	b As Single, _
	c As Single, _
	d As Single, _
	tx As Single, _
	ty As Single _
) As CGAffineTransform
public:
static CGAffineTransform Make(
	float a, 
	float b, 
	float c, 
	float d, 
	float tx, 
	float ty
)
Parameters
a (Single)
The value at position [1,1] in the matrix.
b (Single)
The value at position [1,2] in the matrix.
c (Single)
The value at position [2,1] in the matrix.
d (Single)
The value at position [2,2] in the matrix.
tx (Single)
The value at position [3,1] in the matrix.
ty (Single)
The value at position [3,2] in the matrix.
Return Value
A new affine transform matrix constructed from the values you specify.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)