Share via


Matrix44.Translate(Single, Single, Single) Method

Definition

Applies a translation to this Matrix44, then returns self.

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

Parameters

x
Single

Translation for the x-axis

y
Single

Translation for the y-axis

z
Single

Translation for the z-axis

Returns

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

Attributes

Remarks

Applies a translation to `this` Matrix44, then returns self.

Java documentation for android.graphics.Matrix44.translate(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