(xIn, yIn float64)
| 32 | } |
| 33 | |
| 34 | func MakeB2Vec2(xIn, yIn float64) B2Vec2 { |
| 35 | return B2Vec2{ |
| 36 | X: xIn, |
| 37 | Y: yIn, |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | /// Construct using coordinates. |
| 42 | func NewB2Vec2(xIn, yIn float64) *B2Vec2 { |
no outgoing calls
no test coverage detected