Angle

From JSXGraph Wiki
Revision as of 15:52, 26 July 2012 by A WASSERMANN (talk | contribs) (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]), ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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});