float3x2
struct float3x2Available without an import.
A column-major matrix with three float2 columns. Represents compact 2D affine transforms, including translation, rotation, and scale.
Members
c0field
public float2 c0Column 0 in column-major storage.
c1field
public float2 c1Column 1 in column-major storage.
c2field
public float2 c2Column 2 in column-major storage.
constructorconstructor
public constructor (float2 c0, float2 c1, float2 c2)Stores the supplied columns in order.
Identitygetter
public static get Identity() : float3x2The identity transform, with ones on the diagonal and zeros elsewhere.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.