Cellular_automata
9656 단어 processing
코드
cellular_automata.pde
int[] rules = {0,0,0,1,1,1,1,0};
int gen = 1;
color on = color(255);
color off = color(0);
void setup(){
size(101,101);
frameRate(8);
background(0);
set(width/2,0,on);
}
void draw(){
for(int i = 1; i < width-1; i++){
int left = get(i-1,gen-1);
int me = get(i,gen-1);
int right = get(i+1,gen-1);
if(rules(left,me,right)==1){
set(i,gen,on);
}
}
gen++;
if(gen > height-1){
noLoop();
}
}
int rules(color a,color b,color c){
if((a == on) && (b==on) && (c ==on)){return rules[0];}
if((a == on) && (b==on) && (c ==off)){return rules[1];}
if((a == on) && (b==off) && (c ==on)){return rules[2];}
if((a == on) && (b==off) && (c ==off)){return rules[3];}
if((a == off) && (b==on) && (c ==on)){return rules[4];}
if((a == off) && (b==on) && (c ==off)){return rules[5];}
if((a == off) && (b==off) && (c ==on)){return rules[6];}
if((a == off) && (b==off) && (c ==off)){return rules[7];}
return 0;
}
실행 결과
Reference
이 문제에 관하여(Cellular_automata), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/dr_leonardo1010/items/4cac97dfd25e0775dbb9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)