Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function start() {
  2. verticalLine(200, 100);
  3. verticalLine(100, 200);
  4. verticalLine(20, 300);
  5. }
  6.  
  7. function verticalLine (x, y) {
  8. var line = new Line (x, 0, x, y);
  9. add(line);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement