| 7 | namespace stasm |
| 8 | { |
| 9 | static void CopyPoint( // copy a point from oldshape to shape |
| 10 | Shape& shape, // io |
| 11 | const Shape& oldshape, // in |
| 12 | int i, // in |
| 13 | int iold) // in |
| 14 | { |
| 15 | shape(i, IX) = oldshape(iold, IX); |
| 16 | shape(i, IY) = oldshape(iold, IY); |
| 17 | } |
| 18 | |
| 19 | static void InterPoint( // interpolate a point from two nearby oldshape points |
| 20 | Shape& shape, // io |
no outgoing calls
no test coverage detected