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