Difference between revisions of "Fill the intersection area of three circles"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
Line 7: | Line 7: | ||
c.updateDataArray = function() { | c.updateDataArray = function() { | ||
var i, le = curves.length; | var i, le = curves.length; | ||
+ | |||
// The three paths have to be connected | // The three paths have to be connected | ||
this.dataX = []; | this.dataX = []; | ||
Line 23: | Line 24: | ||
this.bezierDegree = 1; | this.bezierDegree = 1; | ||
} else { | } else { | ||
− | this.bezierDegree = | + | this.bezierDegree = curves[0].bezierDegree; |
} | } | ||
}; | }; |