MonobjcMonobjc Documented Class Library
MakeScale Method (sx, sy)
NamespacesMonobjc.ApplicationServicesCGAffineTransformMakeScale(Single, Single)

Returns an affine transformation matrix constructed from scaling values you provide.

Original signature is : CGAffineTransform CGAffineTransformMakeScale ( CGFloat sx, CGFloat sy );

Available in Mac OS X version 10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static CGAffineTransform MakeScale(
	float sx,
	float sy
)
Public Shared Function MakeScale ( _
	sx As Single, _
	sy As Single _
) As CGAffineTransform
public:
static CGAffineTransform MakeScale(
	float sx, 
	float sy
)
Parameters
sx (Single)
The factor by which to scale the x-axis of the coordinate system.
sy (Single)
The factor by which to scale the y-axis of the coordinate system.
Return Value
A new affine transformation matrix.
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)