THANK YOU!!!!
Sabi ko naman sayo eh, hinding hindi ko sasayangin ang second chance na binigay mo sakin <333
I’m not useless after all :D
Sabi ko naman sayo eh, hinding hindi ko sasayangin ang second chance na binigay mo sakin <333
I’m not useless after all :D
(Source: extrasad)
It’s not because of what the person is saying. It’s because of the person who is saying it <3
Kahit matagal na, may sparks padin tayo :))))
21km in 3 hours and 11 minutes. Okay na para sa first timer na hindi nag training at pinulikat sa kalahati ng race.
/* * [007] Tongue #1 * * 2013 [+++] @tinytintoto */ int c; float r; final int maxdeg = 1080; final int spd = 1; void setup(){ size(500, 500); colorMode(HSB, 360,100,80); smooth(); frameRate(24); background(0); noStroke(); fill( 360, 100, 100 ); c = maxdeg; } void draw(){ translate( width/2, height/2); for( int i = c; i >= c; i -= spd){ r = width * pow(i , 2) / pow(maxdeg, 2); float rad = radians(i); pushMatrix(); translate( r * cos(rad), r * sin(rad) ); ellipse( 0, 0, r/1.5, r/1.5 ); popMatrix(); } c -= spd; if( c == 0 ){ c = maxdeg; background(0); } }