| 116 | } |
| 117 | |
| 118 | Point3D ReadPoint3D(DecodeStream* stream) { |
| 119 | Point3D point = {}; |
| 120 | point.x = stream->readFloat(); |
| 121 | point.y = stream->readFloat(); |
| 122 | point.z = stream->readFloat(); |
| 123 | return point; |
| 124 | } |
| 125 | |
| 126 | static void ReadPathInternal(DecodeStream* stream, PathData* value, const uint8_t records[], |
| 127 | int64_t numVerbs) { |
no test coverage detected