A trangle by SAS with two side 17 , 14 and their included angle angle 60 degree

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

var tri = board.create('triangle', [14, 60 ,17,['A','B','C'],'SAS'],{D:'LT','line':{withLabel: true, strokeColor:'blue', }, 'angle':{visible:false,strokeWidth:1}});

var l1 = board.create('segment', [tri.C, tri.B],{withLabel: true,name:"14",label:{offset:[5,0]}} );

var a1 = board.create('angle', [tri.A, tri.C, tri.B],{name:'60°',radius:2, label:{offset:[-10,0]}});					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top