I am struggling to create line drawing animation using request animation frame. While I was using setInterval function everything was working fine, but I read somewhere that request ani frame is much more optimized and that all functions in interval should be written in this manner.
So here is my code:
var topMinX = 3; var topMaxX = 75; var topMinY = 2;
var topMaxY = 2; var min; var max;
//request animation frame
(function animate(){
var t = setTimeout(function(){
requestAnimFrame(animate);
var d = render(topMinX,topMaxX,topMinY,topMaxY,true);
},20);
})();
function render(xMin,xMax,yMin,yMax,direction){
if(direction){
min = xMin;
max = xMax
}else{
min = yMin;
max = yMax;
}
if(min<max){
context.beginPath();
if(direction){
context.moveTo(xMin,yMin);
xMin = xMin+2;
alert(xMin);
context.lineTo(xMin,yMax);
}else{
context.moveTo(xMin,yMin);
yMin = yMin+2;
context.lineTo(xMax,yMin);
}
context.lineWidth = 4;
context.stroke();
}
}
The problem is that xMin value won't increment. It will always alert 5 and I expected it to increment by 2 in every iteration. Basically I just want to draw a square, so I don't need any diagonal moves, that's why I've added the direction parameter.
I am new to canvas and request ani frame, so any help would be more then useful.
