Beispiel #1
0
 public Float2x2(float m00, float m01, float m10, float m11)
 {
     this = Float2x2.Construct(new Vector2(m00, m10), new Vector2(m01, m11));
 }
Beispiel #2
0
        public Float2x2(float value)
        {
            var v2 = new Vector2(value);

            this = Float2x2.Construct(v2, v2);
        }