A right trangle with the lengths of the 2 legs 24 and 32

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

var p1 = board.create('point', [-10, -15.0],{face:'',fixed:true,label:{offset:[-15,10]}});
var p2 = board.create('point', [14, 17.0],{face:'',fixed:true});
var p3 = board.create('point', [14, -15.0],{face:'',fixed:true});
var l1 = board.create('segment', [p1, p2]);
var l2 = board.create('segment', [p2, p3]);
var l3 = board.create('segment', [p3, p1]);

 var mp1 = board.create('midpoint', [p1, p2],);					

The image appears in the following posts

Triangle posted 1 day ago

Scroll to Top