Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
JAVA
37
RubberBand
Guest on 9th February 2023 03:06:24 AM
import
objectdraw.*
;
public
class
RubberBand
extends
WindowController
{
private
Line
currentLine
;
private
Location start
;
public
void
onMousePress
(
Location point
)
{
start
=
point
;
currentLine
=
new
Line
(
point, point, canvas
)
;
}
public
void
onMouseDrag
(
Location point
)
{
currentLine.
removeFromCanvas
(
)
;
currentLine
=
new
Line
(
start, point, canvas
)
;
}
}
Raw Paste
import objectdraw.*; public class RubberBand extends WindowController { private Line currentLine; private Location start; public void onMousePress( Location point ) { start = point; currentLine = new Line( point, point, canvas); } public void onMouseDrag( Location point ) { currentLine.removeFromCanvas(); currentLine = new Line( start, point, canvas); } }
Login
or
Register
to edit or fork this paste. It's free.