alloc static method

Pointer<Matrix3x3> alloc()

Allocates memory for a Matrix3x3 instance.

Returns a pointer to the allocated memory.

Implementation

static Pointer<Matrix3x3> alloc() {
  return calloc<Matrix3x3>();
}