Advertisement
Guest User

Untitled

a guest
May 23rd, 2021
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. function cjrcle(r, x, y)
  3. for dtheta = math.pi, 0, -math.pi/512 do
  4. love.graphics.line(r*math.cos(dtheta) + x, r*math.sin(dtheta) + y, r*math.cos(-dtheta) + x, r*math.sin(-dtheta) + y)
  5. end
  6. end
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement