| 203 | } |
| 204 | |
| 205 | void Cylinder::project(const SE3 &tf) |
| 206 | { |
| 207 | Vector3 otherPoint = model.root + model.ray; |
| 208 | model.root = tf * model.root; |
| 209 | otherPoint = tf * otherPoint; |
| 210 | model.ray = otherPoint - model.root; |
| 211 | } |
nothing calls this directly
no outgoing calls
no test coverage detected