[HTML/canvas] 변형 (transformations)
mdn의 캔버스 튜토리얼 따라하기 참고 : 캔버스 튜토리얼 function drawTrans() { var ctx = document.getElementById("transCanvas").getContext("2d"); // save(상태저장) & restore(가장 최근 canvas 상태 복원) /* * 이게 개념이 헷갈릴 수 있는데 * 저장공간 스택에 save로 상태를 push하고 * restore로 pop해서 복원하는 것 * (restore를 실행취소로 잘못 생각했었음) */ ctx.fillRect(0,0,150,150); ctx.save(); // 기본 상태 저장(push1) // 설정 변경 ctx.fillStyle = "#09F"; ctx.fillRect(15,15,60,120); ctx.fil..