std::math::matrix {Real}

Matrix2x2

struct Matrix2x2
{
	union
	{
		struct
		{
			Real m00, m01;
			Real m10, m11;
		}
		Real[4] m;
	}
}

Members

Methods