토글 - %(모듈러스)
토글 - 나머지 연산자 모듈러스 연산자는 나머지를 구하기 때문에 나눠지는 대상을 넘어설 수 없다. 값이 미만으로 나오기때문에. 예를 들어 2를 % 했을때 나올 수 있는 값은 0,1 뿐이다. 이것을 토글에 응용하면 다음과 같다. import flash.events.MouseEvent; import caurina.transitions.Tweener; var count:int = 0; _btn.addEventListener(MouseEvent.CLICK, calFn) function calFn(e:MouseEvent){ count++; if( (count % 2) == 0 ){ Tweener.addTween(rec_mc,{rotationX:0, time:2, transition:"easeOutExpo"}); ..
■ 개발관련 ■/산수와 알고리즘
2013. 10. 16. 01:33