A straight angle of 180 degree

						var board = JXG.JSXGraph.initBoard('box1', {
boundingbox: [-10, 10, 10, -10],showNavigation:false, showcopyright: false, axis: false,
});

var p1 = board.create('point', [-3.5, -2.0],{name:'',face:''});
var p2 = board.create('point', [3.5, -2.0],{name:'',face:''});
var l1 = board.create('line', [p1,p2]);
var p3 = board.create('point', [0, -2],{name:'',},{name:'',face:''});



var a1 = board.create('angle', [p2, p3, p1],{radius:2.5,name:"180°",label:{offset:[-12,-25]}});



					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top