Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (defmethod properties ((point point))
  2. '(x y r phi))
  3.  
  4. (defmethod properties ((circle circle))
  5. '(color thickness filledp radius))
  6.  
  7. (defmethod properties ((polygon polygon))
  8. '(color thickness filledp closedp))
  9.  
  10. (defmethod properties ((window window))
  11. '(delegate shape background))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement