| 112 | } |
| 113 | |
| 114 | bool BaseStream::ReadBoundingSphere(BoundingSphere* sphere) |
| 115 | { |
| 116 | Vector3 center; |
| 117 | float radius; |
| 118 | |
| 119 | ReadVector3(¢er); |
| 120 | ReadFloat(&radius); |
| 121 | |
| 122 | sphere->Center = center; |
| 123 | sphere->Radius = radius; |
| 124 | |
| 125 | return true; |
| 126 | } |
| 127 | |
| 128 | bool BaseStream::WriteBytes(byte* value, int length) |
| 129 | { |
nothing calls this directly
no test coverage detected