출석: 김정운, 김상은, 김기창, 공혜선, 김남윤, 이정우, 전주영, 유승환
지각: 변수홍, 최주영, 김동후, 박상현, 양정애.
탈퇴: 이석기, 김동석

강의자: 김기창
주제: image, mouse

과제: 1 이미지가 마우스 커서를 따라다니는 거.
        2 표적이 마우스를 따라다니다가 표적을 클릭하면 색이 변하는 것 ( 스케치 size 800*800)
       전시할 자기 작업물 컨셉
전시 컨셉 : 여행

다음주 강의자 : 변수홍, 김남윤, 박상현, 김아진

꼭 주중에 강의 내용을 미리 올려 주세요~~
Posted by 알 수 없는 사용자
processing과 max/msp를 공부할 예정
-1주차 basic programming
=====================================================
출석-양정애,김기창,이정우,김남윤,전주영,최주영,진다빈,이석기,변수홍,김상은,류승환,공혜선
=====================================================
1.기본 프로그래밍에 관해 - p29~32
프로그램에서 사용하는 기호(명칭) - p29
=====================================================
2.메뉴에 관해 - p38~39
=====================================================
3. size (가로,세로);
화면x,y좌표 읽는
문법-첫번째 영어는 소문자 두번째는 때에 따라 대문자
=====================================================
4. point(x, y) line(x1, y1, x2, y2)
=====================================================
5. rect(좌상각의 x, 좌상각의 y, 가로, 세로);
triangle(x1, y1, x2, y2, x3, y3);
quad(x1, y1, x2, y2, x3, y3, x4, y4);
rectMode(CORNER)(CENTER)(CORNERS)
=====================================================
6.ellipce(중심의 x,중심의 y,가로, 세로)
arc(좌상각의 x, 좌상각이 y, 그리기 시작하는 각도,그리기 끝내는 것의 각도)
각도(0~360)

=====================================================
7.curve(x1, y1, x2, y2,x3, y3, x4, y4), bezier…

=====================================================
8.색 RGB,HSB
colorMode(RGB,100)
background
=====================================================
9.stroke,nostroke,strokeWeight
10.fill,noFill
11.smooth,
=====================================================
12.데이터입력법
int=-1,0,1..
float=소숫점 가능
boolean=yes,no,true,false인지 상태 기억
color
width,height
예제로 p63꺼
=====================================================
13.for문

size(200, 200);
colorMode(HSB, 100);
background(100);
for(int i =0 ; i < 100 ; i++) {
line(i, 50, i, width-50);
}

for(int i=0; i <200; i+=2)
——————————————————————————————————
size(200, 200);
colorMode(HSB, 100);
background(100);
noStroke();

for(int y=0; y < 10; y++){
for(int x=0; x < 10; x++){
fill(x*10, 10+y*10, 100);
rect(x*20, y*20, 10, 10);
}
}
=====================================================
14.random문
size(200, 200);
colorMode(HSB, 100);
background(100);
for(int x=0; x float color1 =random(100);
stroke(color1, 60, 100);
line(x, 0, x, height);
}
=====================================================
15.==,!=,&&,||
while은 for문과 비슷

if/else문

size(200, 200);
colorMode(HSB, 100);
background(100);
noFill();

int h;
int s;

for(int i=0; i < 1000; i++) {
float x =random(width);
float y =random(height);

if(x < width/2) {
h =30;
} else {
h=60;
}
if(y > width/2) {
h +=20;
} else {
h-=20;
}
if(x>50 && x < 150 && y >50 && y < 150) {
s = 100;
} else {
s = 40;
}
stroke(h,s,100);
ellipse(x,y,5,5);
}
=====================================================
16.switch-case-default(case에 안들어간 경우)
boolean에 관해

size(200, 200);
colorMode(HSB, 50);
background(50);

int grad_count =0;
boolean grad_change =false;

for(int x=0; x< width; x++){
if (grad_change) {
grad_count--;
} else {
grad_count++;
}
stroke(30, grad_count, 50);
line(x,0,x,height);
if(grad_count % 50 == 0){
grad_change =!grad_change;}
}
=====================================================
17.PImage

PImage image;
image =loadImage(image.jpg);
image(image,0,0);

tint(45,50,50,50)-칼라모드에 따라

=====================================================
18.PFont font =loadFont(asdad.vlw);
textfont(testfont);
text(“”,12,12);

=====================================================


다음 시간은 20일 토요일 6시
Posted by 알 수 없는 사용자
Etc2007. 10. 12. 16:59
Interaction sig study Plan

Focus : interaction, Programing

Object: 인터렉션의 이해 , 프로그래밍 공부

Member: 김정운, 김기창, 양정애, 김아진, 김상은, 김동석, 공혜선, 김남윤, 이정우, 전주영, 최주영
              
               변수홍, 이석기, 유승환, 김동후(외 pd과 2명), CD과 3학년 진다빈

2학기 계획:   Processing(5주), Max msp(5주), 작품전시(final 이후 계절학기 시작과 동시에).

모임 장소 : 서관 6층, mac실.

블로그: http://cdsig.tistory.com/

회칙:  sadi출결 시스템과 동일,  매 주 과제 있음(전시 준비 관련 및 각 주 강의 복습)

모임 날짜: 매주 토요일 2시로 잠정적 결정.

교제: Built with Processing, Processing(Ben fry / 구입예정)


Processing study기간 주차 계획

1주 : sig 활동의 방향및, 규칙, 계획정리.

2주: Processing의 basic programming /김정운(10월13일 2시)
       
     작품계획 발표/ 교제 Built with Processing

3주: 기창, 정우, 석기 스터디 발표

4주: 남윤, 아진, 수홍, 승환 스터디 발표

5주: 혜선, 동석, 전주영, 스터디 발표

6주: 상은, 최주영, 정애 스터디 발표

Max msp 계획은 추후 회의예정.

Posted by 알 수 없는 사용자
Etc/site2007. 10. 12. 13:53
http://complexification.net
http://levitated.net/

아래껀 플래쉬 오픈소스
Posted by 알 수 없는 사용자
Etc2007. 10. 12. 12:30
정운,
기창,정우,석기
남윤,아진,수홍,승환
헤선,동석,전주영
상은,최주영,정애

동후,근국,아름,상현서효정 교수님
Posted by 알 수 없는 사용자