MonobjcMonobjc Documented Class Library
Concat Method (t1, t2)
NamespacesMonobjc.ApplicationServicesCGAffineTransformConcat(CGAffineTransform, CGAffineTransform)

Returns an affine transformation matrix constructed by combining two existing affine transforms.

Original signature is : CGAffineTransform CGAffineTransformConcat ( CGAffineTransform t1, CGAffineTransform t2 );

Available in Mac OS X version 10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
Public Shared Function Concat ( _
	t1 As CGAffineTransform, _
	t2 As CGAffineTransform _
) As CGAffineTransform
public:
static CGAffineTransform Concat(
	CGAffineTransform t1, 
	CGAffineTransform t2
)
Parameters
t1 (CGAffineTransform)
The first affine transform.
t2 (CGAffineTransform)
The second affine transform. This affine transform is concatenated to the first affine transform.
Return Value
A new affine transformation matrix. That is, t� = t1*t2.
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)