Java com.badlogic.gdx.math Matrix3 fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.math Matrix3 fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.math Matrix3.

The text is from its open source code.

Field

intM02
intM12

Constructor

Matrix3()
Matrix3(Matrix3 matrix)
Matrix3(float[] values)
Constructs a matrix from the given float array.

Method

floatgetRotation()
Vector2getScale(Vector2 scale)
Vector2getTranslation(Vector2 position)
float[]getValues()
Get the values in this matrix.
Matrix3mul(Matrix3 m)
Postmultiplies this matrix with the provided matrix and stores the result in this matrix.
Matrix3mulLeft(Matrix3 m)
Premultiplies this matrix with the provided matrix and stores the result in this matrix.
Matrix3translate(float x, float y)
Postmultiplies this matrix by a translation matrix.