Check if the X coordinate of a given Point is lower than a given value
| 29 | |
| 30 | // Check if the X coordinate of a given Point is lower than a given value |
| 31 | bool IsPointBeforeX(Point const & p, double const x) { |
| 32 | return p.co.X < x; |
| 33 | } |
| 34 | |
| 35 | // Linear interpolation between two points |
| 36 | double InterpolateLinearCurve(Point const & left, Point const & right, double const target) { |
nothing calls this directly
no outgoing calls
no test coverage detected