| 188 | } |
| 189 | |
| 190 | Ray JsonTools::GetRay(const Value& value) |
| 191 | { |
| 192 | return Ray( |
| 193 | GetVector3(value, "Position", Vector3::Zero), |
| 194 | GetVector3(value, "Direction", Vector3::Forward) |
| 195 | ); |
| 196 | } |
| 197 | |
| 198 | Matrix JsonTools::GetMatrix(const Value& value) |
| 199 | { |
nothing calls this directly
no test coverage detected