Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. circle1 = new circle(radius = length_of_vector(firstpoint,secondpoint));
  2. curpoint = firstpoint;
  3.  
  4. void MoveToNext(point)
  5. {
  6. circle2 = new circle(radius = length_of_vector(curpoint,point));
  7. travel(travel_on_arc(circle1),point);
  8. circle.expand_or_contract(circle2);
  9.  
  10. curpoint=point;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement