Advertisement
Matthen

Breakfast

Apr 9th, 2016
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ps = Table[
  2. 3 {Sin[\[Theta]], Cos[\[Theta]]} + 0.5 RandomReal[{-1, 1}, {2}]
  3. , {\[Theta], 0, 2 Pi, 0.14}
  4. ];
  5. ps = MovingAverage[ps, 4];
  6. ps = Join[ps, {First[ps]}];
  7. Graphics[{{Orange, Disk[{-1, -1}, 1]},
  8. FaceForm[],
  9. EdgeForm[Black],
  10. BezierCurve[
  11. ps]}
  12. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement