Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PSET Circle!
#31
VERY NICE. how did you come up wiht that? the patterns are great
Reply
#32
Smile Thats cool Mitth,. tho it took me awhile to wait for it to work.. :wink:
Kevin (x.t.r.GRAPHICS)

[Image: 11895-r.png]
Reply
#33
Accually it was working Rattra, but it was drawing color# 000000 :lol: .

Umm. I was originally trying to rotate Diroga's one by adding an increasing number to the degrees already there each Do loop. But someting happened and it didn't work.

So then I left it there and played with the color max. I then noticed how each number gave a different pattern. So then I just increase that value in the DO:loop.

So that's how I did it. Big Grin
i]"But...it was so beautifully done"[/i]
Reply
#34
<-- How you like that PSET circle? its what happens when a single pixel is rocketing around 3D cords at 6600+ FPS and shading with RGB(z!, z!, z!)..

:rotfl: :bounce: :rotfl: :bounce: :rotfl:

\/ \/ Click down there \/ \/
Kevin (x.t.r.GRAPHICS)

[Image: 11895-r.png]
Reply
#35
Love the avatar!
i]"But...it was so beautifully done"[/i]
Reply
#36
Big Grin Made it with FB,... :wink: .... :roll:
Kevin (x.t.r.GRAPHICS)

[Image: 11895-r.png]
Reply
#37
Oh, I know QB can't handle 500000fps. :lol:
i]"But...it was so beautifully done"[/i]
Reply
#38
:o No, it would fry! oh no!! :rotfl: :wink:
Kevin (x.t.r.GRAPHICS)

[Image: 11895-r.png]
Reply
#39
Just like that artoo pic, eh? BOOM! :lol:
i]"But...it was so beautifully done"[/i]
Reply
#40
Its a little long and includes : But there's no cos,sin,sqr,* or / just + and -. the fisrt line y=180 changes the radius xoff and yoff move it around the screen.

Code:
SCREEN 12
y = 180: xoff = 280: yoff = 200: x = -1
WHILE x < y
x = x + 1: d = d + x + x + 1
IF d > 0 THEN d = d - y - y + 1: y = y - 1
FOR k = 0 TO 7
IF k AND 4 THEN a = -x ELSE a = x
IF k AND 2 THEN b = -y ELSE b = y
IF k AND 1 THEN SWAP a, b
PSET (a + xoff, b + yoff)
NEXT k
WEND
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)