Data update
This commit is contained in:
parent
4d5544505c
commit
4924dd0264
3073 changed files with 55820 additions and 4408 deletions
|
|
@ -0,0 +1,27 @@
|
|||
proc pix x y .
|
||||
grect x / 5 y / 5 0.25 0.25
|
||||
.
|
||||
proc circ x0 y0 r .
|
||||
t1 = r div 16
|
||||
x = r
|
||||
while x >= y
|
||||
pix x0 - x, y0 + y
|
||||
pix x0 - x, y0 - y
|
||||
pix x0 - y, y0 + x
|
||||
pix x0 - y, y0 - x
|
||||
pix x0 + x, y0 + y
|
||||
pix x0 + x, y0 - y
|
||||
pix x0 + y, y0 + x
|
||||
pix x0 + y, y0 - x
|
||||
y += 1
|
||||
t1 += y
|
||||
t2 = t1 - x
|
||||
if t2 >= 0
|
||||
t1 = t2
|
||||
x -= 1
|
||||
.
|
||||
.
|
||||
.
|
||||
for r = 20 step 20 to 240
|
||||
circ 250 250 r
|
||||
.
|
||||
Loading…
Add table
Add a link
Reference in a new issue