這學期終於結束了,應該可以算是完美的結束
學期結束了,但是學到的東西是不可以忘記的
想必以後一定會有用途的.
但是先問問自己這學期學到了什麼?
1.photo impact.
這個程式是用來修改圖片,美工圖片,讓圖片有可看性
大家對這個程式有基礎的了解,都應該受用無窮巴
可以讓自拍照之類的增加美觀程度
2.gold wave
想必大家碰這個軟體之前都應該有知道或聽說過巴
不過我是真的第一次碰到這個軟體,如果我沒有修這堂課我
真的不知道這個軟體的功用如此好用,無聊時可以唱歌給自己聽聽
3.movie make
這個內建於WINDOW裡面的
我之前就有碰依點點
所以說用起來還蠻得心應手的說
4.processing
這個的延伸真的很多,也可以學到很多東西
大家對這個也有莫大的成就感
當某個程式RUN出來的滿足感
就像當廚師的,煮出來的美食
看到吃的這麼的滿足開心.
那種成就感是買不到的
活到老,學到老.
雖然我還是熱血青年的大學生
大家加油
2008年5月13日 星期二
期中考
float angle = 0.0;
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);
}}}
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);
}}}
2008年5月6日 星期二
福老耳...GOOD
2008年5月5日 星期一
2008年4月14日 星期一
自創作品-名稱:自以為的藝術
藝術從你做起
以亮麗糖果顏色加上點點來創造出別以往的藝術
這是程式碼
void setup() {
size(600, 800);
float a,b,c;
a =random(0,255);
b =random(0,255);
c =random(0,255);
background(b,a,c,150);
smooth();
}
void draw() {
float s = dist(mouseX, mouseY, pmouseX, pmouseY) + 1;
noStroke();
float a,b,c;
a =random(0,255);
b =random(0,255);
c =random(0,255);
fill(a,b,c,150);
ellipse(mouseX, mouseY, s, s);
stroke(255);
point(mouseX, mouseY);
}
2008年4月7日 星期一
作業2
code:
void setup(){
size(800,600);
background(255);
noLoop();
}
void draw(){
for(int i=0;i<=800;i+=200){
for(int j=0;j<=600;j+=200){
fill(random(100,255),random(100,255),random(100,255));
rect(i,j,200,200);
elli(i+100,j+100);
}
}
}
void elli(int x,int y){
for(int i=200;i>=10;i-=20){
fill(random(100,255),random(100,255),random(100,255));
ellipse(x,y,i,i);
}
}
fill(random(100,255),random(100,255),random(100,255));
ellipse(x,y,i,i);
}
}
2008年4月6日 星期日
程式碼
這次的難度比較簡單,因為是用趴呢的圖。如果是用我的圖,我看我可要寫寫寫好久巴。
void setup(){
size(800,600);
background(255,102,0);
noLoop();
}
void draw(){
tria();
circus1();
circus2();
circus3();
}
void tria(){
fill(254,230,0);
triangle(0,300,0,600,800,600);
triangle(500,0,800,600,800,0);
}
void circus1(){
fill(0);
ellipse(210,520,65,65);
ellipse(240,580,38,38);
ellipse(708,517,90,90);
ellipse(245,420,115,115);
ellipse(385,275,210,210);
ellipse(705,210,230,230);
}
void circus2(){
fill(255,255,255);
ellipse(550,375,245,245);
}
void circus3(){
fill(195,224,254);
ellipse(520,210,280,280);
ellipse(240,610,40,40);
ellipse(215,470,100,100);
ellipse(210,560,60,60);
ellipse(310,340,200,200);
}
2008年3月31日 星期一
2008年3月28日 星期五
2008年3月17日 星期一
心得-蕭敬璋
簡而言之,就是找出自己的核心競爭能力,並且付出熱情滋養它、灌溉它,且此競爭力可以取得經濟來源,熱情、專注於核心競爭力、經濟來源就是刺蝟原則的三個圓圈!能達到這三個圓圈的交集,勢必無往不利!簡單地說,做任何事要先想像一下,什麼是關鍵?如何做會最有效率?深入且有耐性地找出它的本質,並且不斷地修正,才有辦法達到完美!專注於事情的本質,必須忍受孤獨,短時間內得不到掌聲,得不到認同,這是一條漫長的路,需有不屈不撓的精神、堅定的意志力方可達到別人無法達到的境界刺蝟—單純、憨厚,只懂得一件大事,但卻能一以貫之。
訂閱:
意見 (Atom)





