| 75 | } |
| 76 | |
| 77 | static AFVector3D PBToVec(AFMsg::Point3D xPoint) |
| 78 | { |
| 79 | AFVector3D xID; |
| 80 | xID.x = xPoint.x(); |
| 81 | xID.y = xPoint.y(); |
| 82 | xID.z = xPoint.z(); |
| 83 | return xID; |
| 84 | } |
| 85 | |
| 86 | static AFMsg::Point3D VecToPB(AFVector3D xID) |
| 87 | { |
nothing calls this directly
no outgoing calls
no test coverage detected