November 2011
Intermediate to advanced
348 pages
7h 2m
English
In this recipe, we'll learn how to draw a Quadratic curve. Quadratic curves provide much more flexibility and natural curvatures compared to its cousin, the arc, and are an excellent tool for creating custom shapes.

Follow these steps to draw a Quadratic curve:
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
context.lineWidth = 10;
context.strokeStyle = "black"; // line colorcontext.moveTo(100, canvas.height - 50); context.quadraticCurveTo(canvas.width ...
Read now
Unlock full access