Construct this matrix using columns.
(c1, c2 B2Vec2)
| 226 | |
| 227 | /// Construct this matrix using columns. |
| 228 | func MakeB2Mat22FromColumns(c1, c2 B2Vec2) B2Mat22 { |
| 229 | return B2Mat22{ |
| 230 | Ex: c1, |
| 231 | Ey: c2, |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | func NewB2Mat22FromColumns(c1, c2 B2Vec2) *B2Mat22 { |
| 236 | res := MakeB2Mat22FromColumns(c1, c2) |
no outgoing calls
no test coverage detected