5

I was testing the source code of the answers to this question.

And when I tried this response and maxed out most of the manipulators, this is what I got.

enter image description here enter image description here enter image description here enter image description here

What went wrong that the errors are tilted. Can anyone explain?

Here’s the link for the Notebook.

P.S. These are not Photoshopped.

The-Ever-Kid
  • 1,129
  • 10
  • 19

1 Answers1

11

The function Shuffle is not defined. If you define it (say, replace it with RandomSample) it works. Apparently, Rotate in the latter part of the code is being applied to the output of a function that uses edgeNoise which, in turn, (because Shuffle is undefined) is producing the error message you are seeing.

To replicate what is happening in a simple setting try

 Rotate[Graphics@Disk /@ Take[{{1, 2}, {2, 2}, {3, 4}}, something], 30 Degree]

enter image description here

kglr
  • 394,356
  • 18
  • 477
  • 896