| 146 | |
| 147 | |
| 148 | GroundMotion * |
| 149 | MultiSupportPattern::getMotion(int tag) |
| 150 | { |
| 151 | int loc = theMotionTags.getLocation(tag); |
| 152 | if (loc < 0) |
| 153 | return 0; |
| 154 | else |
| 155 | return theMotions[loc]; |
| 156 | |
| 157 | } |
| 158 | |
| 159 | |
| 160 | bool |
nothing calls this directly
no test coverage detected