QB64.org Forum
Active Forums => Programs => Topic started by: SierraKen on April 29, 2020, 07:30:40 pm
-
Hi everyone,
First I want to say a I'm sorry for being gone since around December. The biggest reason I stopped programming is because I was just out of ideas for the kind of programming I knew and didn't have enough patience with myself to learn more. But finally today I decided to mess around with graphics patterns again. I've made similar stuff in the past but nothing exactly like this. I'm glad all or most of you are still around programming. The other day I removed my website of programs but I told myself that I can still post them here in the forum.
x2 = 400: y2 = 300
s = 0
s = s + 2
x
= COS(s
* 3.141592 / 30) * d
y
= SIN(s
* 3.151492 / 30) * d
-
Welcome back, it really is amazing the psychedelics that can be made with a few math functions and some trim code.
-
Thanks OldMoses! LOL Yeah. I might tinker a bit more soon with programming, if I can think of stuff. :)
-
Welcome Ken - glad to have you around again.
-
Thanks Static. :)
-
Hey @SierraKen,
I was wondering where you were.
I leaned allot from playing with graphics.
-
Hey bplus, thanks. I just didn't want to cause a scene. Anyway, I hope to keep programming sometimes. Probably won't be as much as before. Plus having a website made it even more work on me. Now I don't have to worry about that.
-
Hi Ken. Nice effect in a small amount of code. Weird -- I was working on almost the exact same kind of thing. We must be on the same wave length or something! Well, here's mine...
z
= z
+ 1:
IF z
> x
* 2.1 THEN z
= 1
-
Hi Dav! That is awesome! I just found mine by chance by messing with my old spiral code. :) Good job.