| 109 | } |
| 110 | |
| 111 | Point ReadPoint(DecodeStream* stream) { |
| 112 | Point point = {}; |
| 113 | point.x = stream->readFloat(); |
| 114 | point.y = stream->readFloat(); |
| 115 | return point; |
| 116 | } |
| 117 | |
| 118 | Point3D ReadPoint3D(DecodeStream* stream) { |
| 119 | Point3D point = {}; |
no test coverage detected