| 639 | olc::v_2d<T> direction; |
| 640 | |
| 641 | inline ray(const olc::v_2d<T>& o = { T(0), T(0) }, |
| 642 | const olc::v_2d<T>& d = { T(0), T(0) }) |
| 643 | : origin(o), direction(d) |
| 644 | { } |
| 645 | }; |
| 646 | |
| 647 | template<typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected