| 7 | namespace stasm |
| 8 | { |
| 9 | double MeanPoint( |
| 10 | const Shape& shape, // in |
| 11 | int ipoint1, // in |
| 12 | int ipoint2, // in |
| 13 | int ix) // in: IX or IY |
| 14 | { |
| 15 | return (shape(ipoint1, ix) + shape(ipoint2, ix)) / 2; |
| 16 | } |
| 17 | |
| 18 | void PrevAndNextLandmarks( |
| 19 | int& prev, // out |
no outgoing calls
no test coverage detected