()
| 18 | } |
| 19 | |
| 20 | func MakeB2DistanceProxy() B2DistanceProxy { |
| 21 | return B2DistanceProxy{ |
| 22 | M_vertices: make([]B2Vec2, 0), |
| 23 | M_count: 0, |
| 24 | M_radius: 0.0, |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func NewB2DistanceProxy() *B2DistanceProxy { |
| 29 | res := MakeB2DistanceProxy() |
no outgoing calls
no test coverage detected