/*Rectagle en haut a gauche*/
function drawUpLeftRect () {
context.beginPath();
context.rect(50,50,175,175);
context.stroke();
}
/*Rectangle du milieu*/
function drawMidRect (){
context.beginPath();
context.rect(135,135,175,175);
context.stroke();
}
/*Rectangle en bas a droite*/
function drawLowRight () {
context.beginPath ();
context.rect(225,225,175,175);
context.stroke();
}
/*Petit Rectangle a gauche*/
function drawLitLowLeft(){
context.beginPath();
context.rect(((175/2)-10),312.5,(175/3),(175/3));
context.stroke();
}
drawUpLeftRect();
drawMidRect();
drawLowRight();
drawLitLowLeft();