Hi
I don't see a way on how to drawing an ellipse with paper.js,
Does anyone have a sample on how to draw a ellipse when using
Center point, Major Axis, Minor Axis, Radius Ratio with paper.js
Canvas example:
var ctx = document.getElementById('canvas1').getContext('2d') ;
// Ellipse
var startAngleinDegrees = 0 ;
var endAngleinDegrees = 360 ;
var startAngleinRadians = (Math.PI/180) * startAngleinDegrees ;
var endAngleinRadians = (Math.PI/180) * endAngleinDegrees ;
ctx.beginPath() ;
ctx.ellipse(200, 250, 50, 50, 0, startAngleinRadians, endAngleinRadians, false) ;
ctx.closePath() ;
ctx.stroke() ;