(double x, Node a, Node b)
| 157 | } |
| 158 | |
| 159 | private double alpha(double x, Node a, Node b) { |
| 160 | if (a.x == b.x) |
| 161 | return 0.5f; |
| 162 | return (x - a.x) / (b.x - a.x); |
| 163 | } |
| 164 | |
| 165 | public void clean() { |
| 166 | if (!dirty) |
no outgoing calls
no test coverage detected