| 8 | namespace stasm |
| 9 | { |
| 10 | struct LANDMARK_INFO // landmark information |
| 11 | { |
| 12 | int partner; // symmetrical partner point, -1 means no partner |
| 13 | |
| 14 | int prev, next; // previous and next point |
| 15 | // special val -1 means prev=current-1 and next=current+1 |
| 16 | // see Milborrow master's thesis Section 5.4.8 "Whisker Directions" |
| 17 | |
| 18 | double weight; // weight of landmark relative to others (for shape mod) |
| 19 | |
| 20 | unsigned bits; // used only during training (AT_Glasses, etc.) |
| 21 | }; |
| 22 | |
| 23 | #include "landtab_muct77.h" // MUCT 77 point shapes |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected