Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  @body = (new Path)
  2.           .move(@[radius], 0)
  3.           .line(@[width] - @[radius], 0)
  4.           .quadratic(@[width], 0, @[width], @[radius])
  5.           .line(@[width], @[height] - @[radius])
  6.           .quadratic(@[width], @[height], @[width] - @[radius], @[height])
  7.           .line(@[radius], @[height])
  8.           .quadratic(0, @[height], 0, @[height] - @[radius])
  9.           .line(0, @[radius])
  10.           .quadratic(0, 0, @[radius], 0)
  11.           .define(@, 'background',  '#000')
  12.           .define(@, 'color',       '#fffdeb')
  13.           .define(@, 'stroke',      2)
  14.           .define(@, 'width',       150)
  15.           .define(@, 'height',      150)
  16.           .define(@, 'radius',      8)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement