A scalene triangle with sides of 9, 12, 13

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

var Inpt = [13,9,12,["A","B","C"],'SSS'];
var tri = board.create('triangle',Inpt,{D:"LT",'line':{withLabel:false,strokeColor:'blue',strokeWidth:2},'angle':{visible:false,strokeColor:'red',strokeWidth:1}});
var t1 = board.create('text',[-3,-4,'scalene triangle'],{color:"blue"});

					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top