Matrix44.Scale(Single, Single, Single) Method

Definition

Applies scaling factors to this Matrix44, then returns self.

[Android.Runtime.Register("scale", "(FFF)Landroid/graphics/Matrix44;", "GetScale_FFFHandler", ApiSince=35)]
public virtual Android.Graphics.Matrix44 Scale (float x, float y, float z);
[<Android.Runtime.Register("scale", "(FFF)Landroid/graphics/Matrix44;", "GetScale_FFFHandler", ApiSince=35)>]
abstract member Scale : single * single * single -> Android.Graphics.Matrix44
override this.Scale : single * single * single -> Android.Graphics.Matrix44

Parameters

x
Single

Scaling factor for the x-axis

y
Single

Scaling factor for the y-axis

z
Single

Scaling factor for the z-axis

Returns

A reference to this Matrix, which can be used to chain Matrix operations

Attributes

Remarks

Applies scaling factors to `this` Matrix44, then returns self. Pass 1s for no change.

Java documentation for android.graphics.Matrix44.scale(float, float, float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to