Angle: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="600" height="600"> JXG.Options.point.zoom = true; var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,2,2,-2]}); var A = brd.create('point', [-1,-1]), ...")
(No difference)

Revision as of 15:52, 26 July 2012

The underlying JavaScript code

var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,2,2,-2]});
var A = brd.create('point', [-1,-1]),
    B = brd.create('point', [1,-1]),
    C = brd.create('point', [0,1]),
    alpha = brd.create('angle', [B,A,C], {type:'sector', orthoType:'square, orthoSensitivity:2, radius:0.5});