var board = JXG.JSXGraph.initBoard('box1', {
boundingbox: [-10, 10, 10, -10],showNavigation: false, showcopyright: false, axis: false,
});
var Inpt = [35,75 ,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]}});
var t1 = board.create('text',[-3,-4,'acute triangle'],{color:"blue"});