()
| 40 | } |
| 41 | |
| 42 | func MakeB2SimplexCache() B2SimplexCache { |
| 43 | return B2SimplexCache{ |
| 44 | Metric: 0, |
| 45 | Count: 0, |
| 46 | IndexA: [3]int{}, ///< vertices on shape A |
| 47 | IndexB: [3]int{}, ///< vertices on shape B |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func NewB2SimplexCache() *B2SimplexCache { |
| 52 | res := MakeB2SimplexCache() |
no outgoing calls
no test coverage detected