Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
elcircle
#3
Yes and those have gone through the ringer of Pete, STx and bplus testing ;-))

But as with Charlie it is good to know how to do these on your own for customized effects (they will cost you speed probably).

For example:
```Screen _NewImage(400, 400, 32)
cx = _Width / 2: cy = _Height / 2
r = 100
While r > 0
x = 0: y = r 'reset
While x < y
Color _RGB32(x * 3, 255 - 6 * x, 0)
y = Sqr(r * r - x * x)

PSet (cx - x, cy - y)
PSet (cx + x, cy - y)
PSet (cx - x, cy + y)
PSet (cx + x, cy + y)

PSet (cx - y, cy - x)
PSet (cx + y, cy - x)
PSet (cx - y, cy + x)
PSet (cx + y, cy + x)

x = x + .25
Wend
r = r - .5
Wend```
b = b + ...
Reply


Messages In This Thread
elcircle - by James D Jarvis - 09-14-2023, 04:02 PM
RE: elcircle - by SMcNeill - 09-14-2023, 05:08 PM
RE: elcircle - by bplus - 09-14-2023, 05:39 PM
RE: elcircle - by James D Jarvis - 09-14-2023, 06:36 PM
RE: elcircle - by Dav - 09-15-2023, 12:28 AM



Users browsing this thread: 1 Guest(s)