2008年5月31日 星期六
2008年5月30日 星期五
2008年5月26日 星期一
HW14-1:細胞自動機
Rule 184
那個很像金字塔的圖
只要變動一個數值1或0,圖案就會變動很多
跟之前畫的圖不太一樣
指令變得很複雜,已經不像是一開始寫的程式一樣那麼顯而易懂
需要研究的還有很多
後面的程式,細胞分裂,感覺很像變形蟲
他的演化可以是很多種
有,聚集ˋ分裂ˋ變大或變小之類的方式可以用
不過我還不是很熟
光是修改一些東西試試看,就一直有BUG
其實我的程式真的不是很厲害
要學的還有很多@@
Abuot〝Rule 184〞
沒想到這次卻是另一種演算法,而且拿來作畫!!
真的很特別!!
〝0〞與〝1〞就好比是一個開關,或是說控制碼
0和1顯示著相反的東西,
利用0與1的排序,就可以規律的畫出一張圖!
如此一來我們不用像第一次寫程式繳交的圖片一樣,
一行一行指令寫下來,
只要找到規則,
就可以用程式碼跑出一張圖,
不過要懂這個...需要一點時間!!!
那間上課,老實說,有懂了,可是還是有點模糊!!
一直沒有辦法完成我想要的樣子!!!
@"@ 就這樣下課了!!!! 噗~~
心得沒有很多,就這樣而已@"@a
2008年5月19日 星期一
期中_我要電風扇
呼~
雖然基本程式不難寫
但是後來要把它改比較好看一點反而比較難一點...
一開始本來想爛爛的就算了
但是看到好多人得很好看
轉得很有feel
所以就給他稍微改一下
雖然還是很爛~"~(抱歉喔)
程式碼:
float angle = 0.0;void setup() {size(600, 600);smooth();noStroke(); background(0); frameRate(1000);}void draw() {rect(0,0,100,100);stroke(255,0,128);stroke(200,0,200,200);rect(0,0,0,150);if(mousePressed != true){ background(0);strokeWeight(10);translate(300, 300);stroke(200,0,200,200);rect(0,0,0,150);stroke(200,200,0,200);line(0, 0, 60, 0);line(0, 0, -60, 0);line(0, 0, 0, 60);line(0, 0,0,-60);}if(mousePressed == true)if(mouseX<100 && mouseY<100){stroke(200,0,200,200);rect(0,0,0,150);fill(0, 12);rect(0, 0, width, height);strokeWeight(10);fill(255);angle = angle + 0.2;translate(300, 300);stroke(200,0,200,200);rect(0,0,0,150);rotate(angle);stroke(200,200,0,200);line(0, 0, 60, 0);line(0, 0, -60, 0);line(0, 0, 0, 60);line(0, 0,0,-60);}}
期中考:電風扇
2008年5月17日 星期六
2008年5月16日 星期五
2008年5月13日 星期二
就是差那麼一點...
http://ss24.mcu.edu.tw/~s5360405/_95360405__3
基本上一開始已經先畫出風扇了.....但是在上課時無法變成網路版的....
所以就回家用...
結果一回家才發現我忘記存檔了....
一切重頭開始....
所以有點簡陋.......
改天會想個延伸的然後從新補上來...
這個程式一開始想讓她轉...
我想到的是直接從線的座標去改....
但是改了之後不但電腦當掉......
等到真的跑出來時發現.....
風扇越來越大了......
想了很久.....
想辦法把風扇變小...
但就是想不出來....
後來等救援時....
說課本上有程式碼
有指令可以直接讓他轉...
阿阿阿.....
一句話驚醒我夢中人阿!!!!!!
然後才有辦法讓他轉.....
所以.....
這次我想是我想太多了.....
哈哈哈...
或許下次想的簡單點反而寫的出來~
風扇~''~
旋轉吧!!
float angle = 0.0;
void setup()
{
size(500, 500);
background(255);
smooth();
fill(0);
ellipse(200, 200, 120, 120);
fill(255);
ellipse(200, 200, 115, 115);
fill(0);
rect(195,260,10,100);
}
void draw()
{
dr();
}
void dr()
{
float r,g,b;
r=0;
g=0;
b=0;
noStroke();
fill(r,g,b);
rect(300,350,50,50);
if(mouseX>300 && mouseX<350 && mouseY>350 && mouseY<400)
if (mousePressed == true)
{
fill(168);
rect(300,350,50,50);
translate(200, 200);
stroke(255,0,0);
for (int i = 0; i < 10; i++)
{
rotate(angle);
angle = angle + 0.03;
strokeWeight(1);
rotate(PI/2);
fill(255);
ellipse(0, 0, 110, 25);
rotate(angle);
angle = angle + 0.01;
strokeWeight(1);
rotate(PI/2);
fill(255);
ellipse(0, 0, 110, 25);
fill(255);
ellipse(0, 0, 33, 33);
}
}
}
期中考
void setup() {
size(800, 600);
background(0);
smooth();
}
void draw() {
background(0);
fill(255);
rect(300,500,50,50);
stroke(255,0,0,200);
line(510,550,510,330);
if (mousePressed == true) {
angle = angle + 0.5;
translate(510,330);
rotate(angle);
strokeWeight(15); // Increase stroke weight
for (int i = 0; i < 30; i++) {
strokeWeight(10);
rotate(PI/15);
stroke(0,0,255,200);
line(50, 50, 50,0);
strokeWeight(20);
rotate(PI/30);
stroke(0,255,0,200);
line(20, 20, 40,0);
strokeWeight(20);
rotate(PI/30);
stroke(255,0,0,200);
line(10, 10, 20,0);
}
}
else
{
strokeWeight(15); // Increase stroke weight
translate(510, 330);
for (int i = 0; i < 30; i++) {
strokeWeight(10);
rotate(PI/15);
stroke(0,0,255,200);
line(50, 50, 50,0);
strokeWeight(20);
rotate(PI/30);
stroke(0,255,0,200);
line(20, 20, 40,0);
strokeWeight(20);
rotate(PI/30);
stroke(255,0,0,200);
line(10, 10, 20,0);
}}}
期中考~風扇
float angle = 0.0;
void setup()
{
size(500,500);
background(255);
smooth();
fill(0,0,0);
rect(0,0,50,50);
}
void draw()
{
if (mouseX<50 && mouseY<50)
{
if (mousePressed == true)
{
rect(250, 50,3,500);
translate(250,140);
for (int i = 0; i<10;i++)
{
rotate(angle);
stroke(0,255,0);
strokeWeight(30);
line(0,0,80,0);
angle = angle + 0.01;
rotate(angle);
strokeWeight(2);
fill(0);
angle = angle + 0.03;
ellipse(0, 0, 200, 20);
fill(0);
ellipse(0, 0, 50, 50);
fill(255);
}
}
}
}
我覺得這個考試
最難的地方
應該就是
讓它轉吧
讓它轉是向別人求救
才出來的
風扇
void setup() {
size(800, 600);
background(255,255,255);
smooth();
}
void draw(){
background(255,255,255);
smooth();
stroke(255,0,0);
translate(300, 300);
line(2,50,2,100);
angle = angle + 0.02;
rotate(angle);
for( int i=0;i<24;i++)
{
smooth();
line(50, 0, 10, 0);
rotate(PI/2);
strokeWeight(10);
stroke(350,50,50);
ellipse (0,0,50,50);
}
}
只能這樣囉
先PO程式碼
}
void draw(){/*background(0);translate(300, 300); // Set initial offsetfor (int i = 0; i < 50; i++) { // 18 repetitionsstrokeWeight(i/2); // Increase stroke weightrotate(PI/2); // Accumulate the rotationline(0, 0, 100, 0);stroke(255,125,200);fill(255);ellipse(0,0,50,50);}*/
if(mouseButton == LEFT) {angle = angle + 0.02;translate(300, 300);rotate(angle);for (int i = 0; i < 50; i++) { // 18 repetitionsstrokeWeight(i/2); // Increase stroke weightrotate(PI/2); // Accumulate the rotation line(0, 0, 100, 0);stroke(255,125,200);//background(0);
}
}
}
先PO程式碼= =
等我回家修改過後在把網路版的PO上來
風箏
float angle = 0.0;void setup() {size(600, 400);smooth();noStroke();}void draw() {rect(0, 0, width, height);fill(0,0,0);rect(0, 0, 50, 50);fill(128,123,111);line(100,100,100,250);fill(255);translate(100, 100);for (int i = 0; i < 4; i++) { strokeWeight(18); rotate(PI/2); stroke(180,180,180,180); line(0, 0, 55, 0); }if(mousePressed == true) dr();}void dr(){ if(mouseX<50 && mouseY<50){ //background(255); line(0,0,0,150); angle = angle + 0.01; rotate(angle); for (int i = 0; i < 4; i++) { strokeWeight(18); rotate(PI/2); stroke(180,180,180,180); line(0, 0, 55, 0); } }}
期中"電風扇"
void setup()
{
size(400,400);
smooth();
noStroke();
}
void draw() {
fill(132,81,151);
rect(0,0,50,50);
if(mouseX<50 && mouseY<50)
if (mousePressed == true)
{
fill(255,0,128);
rect(190,250,20,120);
fill(0,0,255);
ellipse(200, 200, 15,15);
fill(40,50);
rect(0, 0, width, height);
fill(255,0,0);
angle = angle + 10.0;
translate(200,200);
rotate(angle);
rect(-50,-10,50,10);
}
}
期中
http://ss24.mcu.edu.tw/~s5360813/index.html
電風扇 按ㄌ會動
float angle = 0.0;
void setup(){size(800,600);frameRate(15);}void draw(){ background(255,255,255); translate(400,300); ellipse(0, 0,100,100); fill(0,100,0); line(0, 50, 0, 200); angle=angle+0.2; rotate(angle); draw2();}void draw2(){ { translate(-100,0); ellipse(0, 0,100,60); fill(100,100,0); } { translate(200,0); ellipse(0, 0,100,60); fill(10,100,100); } }
風扇
float angle = 0.0;
void setup() {
size(300, 400);
background(0,0,255);
strokeWeight(3);
rect(150,200,0,200);
strokeWeight(0);
fill(255,255,0);
rect(0,0,50,50);
}
void draw() {
if(mouseX<50 && mouseY<50)
{
if (mousePressed == true){
translate(150, 200);
for( int i=1;i<3;i++)
{
angle = angle + 0.05;
rotate(angle);
strokeWeight(10);
stroke(255,0,0,100);
line(0, 20, 50, 0);
angle = angle + 0.03;
rotate(angle);
strokeWeight(10);
stroke(0,0,0,100);
line(0, 0, 50, 0);
}
}
}
}
一開始很快就做出風扇,但是不會轉,直道跟同學求救,才知道要加上角度的變數,才可以使風扇轉動
我的風扇
這次的上機考有點小緊張,
畫一個電扇的語法還算ok
之後要讓她動就有點難倒我了!
後來看老師的講義備我翻到,
了解用法,
帶進去~
他就轉勒~
酷,有點成就感^^
rect(50,50,80,80);if(mousePressed==true){ fill(0,225,0,10); ellipse(400,300,380,380); fill(225,0,0); rect(400,490,20,200); fill(0,12);ellipse(0,0, width,height);rect(0, 0, width, height);rect(0, 0, width, height);fill(225);angle = angle + 0.02;translate(400, 300);rotate(angle);ellipse(-30,-30,100,100); rect(-40,-180,20,300); rect(-180,-40,300,20);
}
}
期中考阿~電風扇
先放程式碼,很亂
float angle = 0.0;
void setup(){
size(400,300);
background(0);
}
void draw(){
rect(195,150,10,60);
rect(180,210,40,10);
rect(210,200,10,10);
translate(200, 150);
fill(255,100,190,80);
ellipse(0,0,70,10);
ellipse(0,0,10,70);
if ((mouseX > 210) && (mouseX <> 200) && (mouseY < 210)) {
if (mouseButton == LEFT) {
for (int i = 0; i <15; i++) {
rotate(PI/10);
angle = angle+0.0002;
ellipse(0,0,70,10);
rotate(angle);
}
}
}
}
電扇
這次電風扇原本我是用花去改的
但只能變顏色
後來改成旋轉但有重疊下來的痕跡
後來把background和LOOP一起跑就解決了
2008年5月12日 星期一
這次的考試
其實就掌握幾個重要的程式碼
應該就可以做的出來了
translate 物件位置
stroke 填充顏色
rotate 旋轉角度
花~
HW12-1:圖形的變換、位移、旋轉
2008年5月11日 星期日
2008年5月10日 星期六
2008年5月8日 星期四
花
size(600, 600);
background(0);
smooth();
}
void draw(){
smooth();
if (mousePressed == true){
translate(mouseX, mouseY);
for (int i = 0; i < 30; i++) {
strokeWeight(10);
rotate(PI/15);
stroke(0,0,255,200);
line(50, 50, 50,0);
strokeWeight(20);
rotate(PI/30);
stroke(0,255,0,200);
line(20, 20, 40,0);
strokeWeight(20);
rotate(PI/30);
stroke(255,0,0,200);
line(10, 10, 20,0);
}
}
}
2008年5月6日 星期二
花2
void setup() {
size(500, 500);
background(255);
smooth();
}
void draw(){
smooth();
translate(mouseX,mouseY); // Set initial offset
if (mousePressed == true) {
for (int i = 0; i < 25; i++)
{
strokeWeight(5); // Increase stroke weight
rotate(50);// Accumulate the rotation
stroke(random(0,255),random(0,255),random(0,255));
line(6, 1, 50, 50);
}
}
}
奇怪花
void setup()
{
size(800,600);
background(0);
}
void draw()
{
}
void mousePressed()
{
smooth();
stroke(1, 10);
translate(mouseX, mouseY); // Set initial offset
float x=random(0,200);
fill(255,x,x);
for (int i = 0; i < 18; i++) { // 18 repetitions
strokeWeight(i); // Increase stroke weight
rotate(PI/5); // Accumulate the rotation
fill(random(100,255),random(100,190),random(100,190));
ellipse(0,0,60,10);
}
}
===============================================================
奇怪的花
花!!!
福老耳...GOOD
花!!
void setup(){
size(600,600);
background(0);
smooth();
stroke(255,120);
}
void draw(){
if (mousePressed == true){
translate(mouseX, mouseY);
for (int i=0;i<25; i++)
{
strokeWeight(i);
rotate(PI/12);
line(0, 0, 100, 0);
stroke(random(0,255),random(0,255),random(0,255),180);
fill(random(0,255),random(0,255),random(0,255),180);
triangle(30,40,20,50,60,20);
}
}
}
花
void setup() {
size(200, 200);
background(255);
smooth();
noLoop();
}
void draw(){
smooth();
translate(99, 99); // Set initial offset
for (int i = 0; i < 25; i++) { // 18 repetitions
strokeWeight(5); // Increase stroke weight
rotate(50);// Accumulate the rotation
stroke(random(0,255),random(0,255),random(0,255));
line(6, 1, 50, 50);
}
}
Flower
Code:
void setup()
{
size(800,600);
background(255);
}
void draw(){}
void mousePressed()
{
smooth();
stroke(random(0,255),random(0,255),random(0,255), 120);
translate(mouseX, mouseY); // Set initial offset
for (int i = 0; i < 12; i++) { // 18 repetitions
strokeWeight(50); // Increase stroke weight
rotate(PI/6); // Accumulate the rotation
line(0,0,55,0);
}
ellipse(0,0,30,30);
}
花非花!!
種花!
void setup()
{
size(400, 600);
background(255);
smooth();
}
void draw()
{
dr();
}
void dr()
{
float r,g,b;
r=random(0,255);
g=random(0,255);
b=random(0,255);
if (mousePressed == true)
{
translate(mouseX, mouseY);
stroke(r,g,b,120);
for (int i = 0; i < 20; i++)
{
strokeWeight(10);
rotate(PI/8);
line(0, 0, 50, 0);
ellipse(0, 0, 15, 15);
}
}
}
花
size(800,600);
background(255);
smooth();
translate(400, 300);
for (int i = 0; i<30;i++){
stroke(random(255,255),random(0,160),random(128,255));
strokeWeight(i);
rotate(PI/5);
line(0, 0, 55, 0);
}
void setup(){
size(800,600);
background(255);
smooth();
translate(400, 300);
}
void draw(){
if (mousePressed == true)
{
translate(mouseX,mouseY);
for(int i=0;i<30;i++){
stroke(random(255,255),random(0,160),random(128,255));
strokeWeight(i);
rotate(PI/5);
line(0, 0, 55, 0);
}
}
}
花花花花花花
很多花
花-自點
程式碼:
void setup(){
size(800,600);
background(0);
}
void draw(){
for(int i=0;i<50;i++)
{
float x,y;
float a1,a2,a3,a4;
a1=random(0,255);
a2=random(0,255);
a3=random(0,255);
a4=random(0,255);
x=random(0,800);
y=random(0,600);
if (mousePressed == true)
{
smooth();
stroke(a1,a2,a3,a4);
translate(mouseX, mouseY);
// translate(x,y); // Set initial offset 座標
for (int j = 0; j <50; j++)
{
strokeWeight(j); // Increase stroke weight
rotate(PI/6); // Accumulate the rotation
line(0, 0, 55, 17);
}
}
}
}
花
void setup()
{
size(400, 400);
background(30,150,0);
smooth();
}
void draw(){
translate(mouseX,mouseY); // Set initial offset
if (mousePressed == true){
for (int i = 0; i < 30; i++)
{ // 18 repetitions
strokeWeight(7); // Increase stroke weight
rotate(PI/12); // Accumulate the rotation
stroke(random(0,255),random(0,100),random(0,100),random(150,180));
line(0, 0, 30, 0);
}
}
}
2008年5月5日 星期一
這是花?
void setup(){
background(0);
size(600,600);
smooth();
stroke(255, 120);
} void draw(){
if (mousePressed == true){
translate(mouseX, mouseY); // Set initial offset
for (int i = 0; i < 50; i++) { // 18 repetitions
strokeWeight(i/2); // Increase stroke weight
rotate(PI/12); // Accumulate the rotation line(0, 0, 100, 0);
stroke(random(0,255),random(0,255),random(0,255),random(0,200));
fill(random(0,255),random(0,255),random(0,255),random(0,200));
ellipse(0,0,50,50);
}
}
}
康乃馨
程式碼:
void setup()
{
size(800,600);
background(0);
}
void draw()
{
}
void mousePressed()
{
smooth();
stroke(1, 10);
translate(mouseX, mouseY); // Set initial offset
float x=random(10,150);
fill(255,x,x);
for (int i = 0; i < 18; i++) { // 18 repetitions
strokeWeight(i); // Increase stroke weight
rotate(PI/4.8); // Accumulate the rotation
ellipse(0,0,60,10);
}
fill(255,190,190);
ellipse(0,0,5,5);
}
我點~
Flower_滑鼠點
void setup(){
size(800,600);
background(0);
smooth();
}
void draw(){
stroke(255, 120, random(0,255), 100);
translate(mouseX, mouseY);
if(mousePressed == true)
{
for (int i = 0;i <>{
strokeWeight(10);
rotate(PI/12);
line(0, 0, 40, 10);
}
for (int i = 0;i <>{
stroke(255, 255, 0);
strokeWeight(10);
rotate(PI/12);
line(0, 0, 5, 0);
}
}
}
花
隨著滑鼠點擊,可以增加圖片數量。
translate(mouseX, mouseY); // Set initial offset
花? part 2
我找不到滑鼠離開的方法,所以變成這副德性
void setup() {
size(800, 600);
background(255);
smooth();
}
void draw(){
if (mousePressed == true)
re_todo(mouseX,mouseY);
}
void re_todo(int x,int y){
smooth();
translate(x, y); // Set initial offset
for (int i = 0; i < random(3,25); i++) { // 18 repetitions
strokeWeight(random(3,18)); // Increase stroke weight
rotate(PI/5); // Accumulate the rotation
stroke(random(0,255),random(0,255),random(0,255),180);
line(0, 0, random(15,55), 0);
}
}
0506一堆花
想辦法均勻散佈中...
程式碼:
void draw(){ for(int j=0;j<100;j++){ translate(random(-50,100),random(-50,100));fill(random(150,255),random(150,255),random(150,255),255);ellipse(-35, -5, 70, 10);for(int i=0;i<180;i++){ rotate(-PI/10);fill(random(150,255),random(150,255),random(150,255),255);ellipse(-35, -5, 70, 10);}fill(random(150,255),random(150,255),random(150,255),255);ellipse(0, 0, 60, 60);} }
}void draw() { } // Empty draw() keeps the program runningvoid mousePressed() {float xx=random(0,100),yy=random(0,20);translate(mouseX,mouseY);fill(random(150,255),random(150,255),random(150,255),255);ellipse(-xx/2, -yy/2, xx, yy);for(int i=0;i<180;i++){ rotate(-PI/10);fill(random(150,255),random(150,255),random(150,255),255);ellipse(-xx/2, -yy/2, xx, yy);}fill(random(150,255),random(150,255),random(150,255),255);ellipse(0, 0, xx, xx);
}
標籤
- 93360400 小安 (2)
- 93360550、小蔣、week1 (1)
- 93363650、許峰賢、刺謂原則 (1)
- 93363650、許峰賢、花 (1)
- 93363650、許峰賢、參觀心得2 (1)
- 93363650、許峰賢、期中心得 (1)
- 93363650、許峰賢、期末回顧 (1)
- 94360095 (1)
- 94360095 蔡佳儒 (2)
- 94360415 (19)
- 94360415 魏澤宇 (1)
- 94360522 (13)
- 94360786 (12)
- 94360912 (8)
- 94360912林崇基 (12)
- 94361082 (9)
- 94363090 (9)
- 94363090 劉冠廷 (7)
- 94363090 劉冠廷94360095 蔡佳儒 (2)
- 94363613 (24)
- 95360015 (12)
- 95360051 (1)
- 95360051羅敏慧 (18)
- 95360094 (21)
- 95360290 (14)
- 95360316 (12)
- 95360316李士奇 (1)
- 95360343 (21)
- 95360352 (14)
- 95360352施冠宇 (7)
- 95360405 (8)
- 95360405.94360415 (1)
- 95360405.陳昭融 (9)
- 95360414 (14)
- 95360414黃彥涵 (3)
- 95360441 (7)
- 95360475 (16)
- 95360546 (13)
- 95360546劉逸寧 (5)
- 95360564 (16)
- 95360626 (11)
- 95360626李秉霖 (10)
- 95360644 (10)
- 95360794 (16)
- 95360813 (7)
- 95360813 (1)
- 95360831 (17)
- 95360831 李承峰 (1)
- 95360831,李承峰 (1)
- 95360936 (19)
- 95360954 (23)
- 95360972 廖慶傑 (3)
- 95360972,廖慶傑 (9)
- 95360972,廖慶傑 95360644.陳冠行 (2)
- 95360972.95360644 廖慶傑.陳冠行 (1)
- 95361036 (23)
- 95361045 (21)
- 95361090 (14)
- 95361116 (15)
- 95361143 (20)
- 95361170 (11)
- 95361170方泓智 (7)
- 95361195 (14)
- 95361214 (19)
- 95361214馮國棟 (1)
- 96361045 (1)
- 方泓智 (10)
- 老師畫像 (1)
- 何博欽 (8)
- 吳坤璋 (11)
- 李士奇 (10)
- 李承峰 (17)
- 李秉霖 (9)
- 李慧娟 (11)
- 刺蝟原則心得 (1)
- 林育丞 (5)
- 林崇基 (3)
- 林豪鋒 (6)
- 花 (1)
- 花2 (1)
- 施冠宇 (7)
- 洪培修 (24)
- 風車、93363650、許峰賢 (1)
- 康峻岳 (15)
- 張家瑀 (9)
- 陳孟輝 (18)
- 陳冠行 (10)
- 陳昭融 (6)
- 傅一航 (7)
- 期中回顧 (1)
- 期中考 (2)
- 期末回顧 (1)
- 馮國棟 (18)
- 黃世育 (5)
- 黃立旻 (10)
- 黃劭龍 (13)
- 黃邵龍 (1)
- 黃彥涵 (15)
- 圓型方陣 (1)
- 資工二 (1)
- 資工二乙 (11)
- 資工二乙 95360414 黃彥涵 (3)
- 資工二乙 吳坤璋 95361090 (3)
- 資工二乙吳坤璋95361090 (1)
- 網頁 (1)
- 劉冠廷 (9)
- 劉逸寧 (12)
- 劉筱玲 (8)
- 蔡佳儒 (1)
- 鄭佳訓 (16)
- 賴彥穎 (16)
- 賴政宏 (22)
- 簡南豐 (16)
- 魏澤宇 (16)
- 蘇乃渝 (12)
- ktv (1)
- l劉逸寧 (1)
- Processing做出的自畫圖 (1)
- week1 (3)
- week2 (2)
網誌存檔
-
▼
2008
(590)
-
▼
5月
(139)
- 熊恩妤的自畫像
- 賈晉瑄的自畫像
- 江穎的自畫像
- 陳逸軒的自畫像
- 李孟書的自畫像
- 熊恩皓ㄉ自畫像
- 林愛紋(cat) 的 自畫像
- 謝慶勳的自畫像
- 林佑真的自畫像 ^_^
- 李杰翰的自畫像
- 丁冠誌的自畫像
- 謝惠如 自畫像
- Rule 184~
- HW14-1:細胞自動機
- Rule 184
- 無標題
- Abuot〝Rule 184〞
- Week14:細胞自動機的資料
- 風扇
- 上次的上機考
- 遲來的一PO
- 期中_我要電風扇
- 期中考:電風扇
- 期中考-電風扇-網路版
- 真是一PO三折
- 就是差那麼一點...
- 期中考-電風扇
- 電扇
- 其中-電風扇
- 電風扇
- 風扇~''~
- 電風扇
- 期中考
- http://ss24.mcu.edu.tw/~s5360094/fan卡住的部份在於,只會旋轉一次...
- 期中考~風扇
- 風扇
- 先PO程式碼
- 風箏
- 電扇
- 期中"電風扇"
- 風扇
- 期中
- 風扇
- 我的風扇
- float angle = 0.0;void setup(){size(800, 600);back...
- 電風扇
- 期中考阿~電風扇
- 上機考之電風扇(?)
- 電扇
- 電風扇上機考
- 電風扇
- 電風扇
- 偷吃步之殘影運用
- 期中考~風扇
- 小小花型電風扇~
- { size(400, 400); background(255); smooth(); }...
- 點到哪就開花~
- 花~
- HW12-1:圖形的變換、位移、旋轉
- 0506之2的延伸
- 延伸
- 距離~變化
- 小畫家~超簡易版
- 花
- Recursuve
- 花2
- 花?畫?
- 奇怪花
- 花!!!
- 灑小花
- 福老耳...GOOD
- 花!!
- 花
- Flower
- 第2朵花
- 花非花!!
- 花
- flower
- 花花花花花花
- 很多花
- 這不是花
- 花-自點
- 花
- 這是花?
- 康乃馨
- 花0.0
- 1個花
- 我點~
- Flower_滑鼠點
- 花
- 花
- 花? part 2
- 小紅花~
- 0506一堆花
- 我不能PO圖阿
- flower
- 花?
- 期中回顧
- 簡易小畫家
- 期中回顧
-
▼
5月
(139)