An obtuse angle triangle with interior angles 105,35 and 70 degrees
var board = JXG.JSXGraph.initBoard('box1', {
boundingbox: [-10, 10, 10, -10],showNavigation: false, showcopyright: false, axis: false,
});
var Inpt = [35,105 ,15,["A","B","C"],'AAS'];
var tri = board.create('triangle',Inpt,{D:"LT",'line':{withLabel:false,strokeColor:'blue',strokeWidth:2}, 'angle':{ strokeColor:'red', strokeWidth:1}});
var a1 = board.create('angle',[tri.A,tri.C,tri.B],{ strokeColor:'red', radius:1.6, strokeWidth:1, name:"70°",label:{offset:[-5,0]}});
