드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : programmer_14192짧은주소 복사하기
작성자 : 공맹순★
추천 : 0
조회수 : 217회
댓글수 : 1개
등록시간 : 2015/10/31 09:33:15
삼각형으로 fractal을 만들고 싶은데 그냥 삼각형만 나오네요ㅠㅠ
size(1000,1000);
smooth();
}
void draw(){
background(255);
stroke(0);
noFill();
triangle(width/2,height/10,width/10,height/20,width/8,height/100);
}
void drawfractal(float a,float b ,float c,float d,float e,float f,float leng){
triangle(a,b,c,d,e,f);
if(leng>12){
triangle(a+leng/2,b,c+leng,d,e+leng,f);
triangle(a-leng/2,b,c-leng,d,e-leng,f);
triangle(a,b+leng/2,c,d+leng,e,f+leng);
triangle(a,b-leng/2,c,d-leng,e,f-leng);
}
}
뭐가 잘못된걸 까요ㅠ
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.