File: vectorfunctiontest.cfdg

package info (click to toggle)
contextfree 3.1%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,432 kB
  • sloc: cpp: 34,857; lex: 416; makefile: 124; sh: 42; python: 41
file content (13 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
startshape spiral

vector2 polar2rect(radius, angle) = 
  radius*cos(angle),
  radius*sin(angle)

hueRange = -60, 60

shape spiral {
  loop i = 360 [] {
    SQUARE[x polar2rect(i, i) r i s 5 h rand(hueRange) sat 1 b 1]
  }
}