Returns rectangular area of vector
| 651 | |
| 652 | // Returns rectangular area of vector |
| 653 | inline constexpr auto area() const |
| 654 | { |
| 655 | return x * y; |
| 656 | } |
| 657 | |
| 658 | // Returns magnitude of vector |
| 659 | inline auto mag() const |
nothing calls this directly
no outgoing calls
no test coverage detected