Get a line from an indexed side, starting top, going clockwise
| 757 | |
| 758 | // Get a line from an indexed side, starting top, going clockwise |
| 759 | inline line<T> side(const size_t i) const |
| 760 | { |
| 761 | return line(pos[i % 3], pos[(i + 1) % 3]); |
| 762 | } |
| 763 | |
| 764 | // Get area of triangle |
| 765 | inline constexpr T area() const |