Paso 5: Configurar el lienzo
Aquí hemos creado la tela que vamos a utilizar. En este tutorial hice el lienzo 15cm por 15cm. Definimos el el CANVAS_HEIGHT y CANVAS_WIDTH como variables para que los podamos utilizar más adelante en la secuencia de comandos.
// Make a working area that is 15cm x 15cm. var CANVAS_HEIGHT = ONE_CM_IN_PX*15; var CANVAS_WIDTH = ONE_CM_IN_PX*15; // Create the Raphael object to hold the SVG elements. var paper = Raphael(100, 100, CANVAS_WIDTH, CANVAS_HEIGHT);