(c1, c2 B2Vec2)
| 233 | } |
| 234 | |
| 235 | func NewB2Mat22FromColumns(c1, c2 B2Vec2) *B2Mat22 { |
| 236 | res := MakeB2Mat22FromColumns(c1, c2) |
| 237 | return &res |
| 238 | } |
| 239 | |
| 240 | /// Construct this matrix using scalars. |
| 241 | func MakeB2Mat22FromScalars(a11, a12, a21, a22 float64) B2Mat22 { |
nothing calls this directly
no test coverage detected