Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function start(){
  2. horizontalLine(0,200);
  3. }
  4.  
  5.  
  6. function horizontalLine(x, length){
  7. var line = new Line(0, x, length,x);
  8. line.setColor(Color.black);
  9. line.setLineWidth(5);
  10. add(line);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement