------------------------------------------------------------------------------------------------
| 107 | |
| 108 | // ------------------------------------------------------------------------------------------------ |
| 109 | void ReadVector(StreamReaderLE& stream, aiVector3D& pos) |
| 110 | { |
| 111 | // See note in ReadColor() |
| 112 | stream >> (float&)pos.x >> (float&)pos.y >> (float&)pos.z; |
| 113 | } |
| 114 | |
| 115 | // ------------------------------------------------------------------------------------------------ |
| 116 | template<typename T> |
no outgoing calls
no test coverage detected