The Daily Click ::. Projects ::. Expression Editor Plus (E++)
 

Project: Expression Editor Plus (E++)
Project Started: 11th January, 2008 Last Update: 16th September, 2009
Project Owner: DeadmanDines Project Members:
Project Type: Application Project Progress:

On Second Thoughts...
Posted 29th Jan 08, by DeadmanDines  
...I thought I'd post a screeny of one use for this app. It helped organise the expressions for the following dumb looking shapes:

Image

Don't you just wanna start makin' your own little etch-o-sketch stylograph pictures?

The code for the demented flower:
//The premise:

// It's got to go in/out, altering the distance considerably.
angle = t("B");

//So, our basic starting circle (a)

a_xpos = 480;
a_ypos = 420;
a_radius = 200;

//This next is a sinus to alternate the wobble in distance

wobble = sin(angle*25);

//So our next pointer should see us wobblin (b)

b_xpos = a_xpos + sin(angle) * ((a_radius*1.5) * wobble);
b_ypos = a_ypos + cos(angle) * ((a_radius*1.5) * wobble);
b_radius = wobble * 42;

//Another (c)
c_xpos = b_xpos + sin(angle*50) * b_radius;
c_ypos = b_ypos + cos(angle*50) * b_radius;

//Plot it!

round(c_xpos)

No comments have been posted for this post.


 



Project Forums


Favourite

Advertisement

Worth A Click