Creates a new straight line selection using the specified starting and ending offscreen integer coordinates.
(int ox1, int oy1, int ox2, int oy2)
| 39 | /** Creates a new straight line selection using the specified |
| 40 | starting and ending offscreen integer coordinates. */ |
| 41 | public Line(int ox1, int oy1, int ox2, int oy2) { |
| 42 | this((double)ox1, (double)oy1, (double)ox2, (double)oy2); |
| 43 | } |
| 44 | |
| 45 | /** Creates a new straight line selection using the specified |
| 46 | starting and ending offscreen double coordinates. */ |
nothing calls this directly
no test coverage detected