(@NotNull Point a, @NotNull Point b)
| 132 | } |
| 133 | |
| 134 | @NotNull @Contract("_, _ -> new") |
| 135 | public static Path makeLine(@NotNull Point a, @NotNull Point b) { |
| 136 | return makeLine(a._x, a._y, b._x, b._y); |
| 137 | } |
| 138 | |
| 139 | @NotNull @Contract("_, _, _, _ -> new") |
| 140 | public static Path makeLine(float x0, float y0, float x1, float y1) { |
no test coverage detected