Unable to add labels with each side of triangle using canvas in JavaScript

110 Views Asked by At

enter image description here

<html>
  <head>
    <title>Triangle Canvas Example</title>
  </head>
  <body>
    <canvas id="myCanvas" width="500" height="500"></canvas>
    <h1>Calc</h1>
    <p>Side A: <input type="text" id="a" /></p>
    <br />
    <p>Side B: <input type="text" id="b" /></p>
    <br />
    <p>c: <input type="text" id="c" /></p>
    <br />
    <button type="button" onclick="Calculate()">Calculate</button>
    <br />
    <p>value: <span id="output"></span></p>

    <script>
      var output = document.getElementById("output");
      var a, b, c;

      function Calculate() {
        var canvasElement = document.querySelector("#myCanvas");
        var context = canvasElement.getContext("2d");
        a = parseFloat(document.getElementById("a").value);
        b = parseFloat(document.getElementById("b").value);
        c = parseFloat(document.getElementById("c").value);
        var output = document.getElementById("output");

        if (Number.isNaN(a) && !Number.isNaN(b) && !Number.isNaN(c)) {
          const a = Math.sqrt(c ** 2 - b ** 2);
          output.textContent = " " + a;
        }
        if (Number.isNaN(b) && !Number.isNaN(a) && !Number.isNaN(c)) {
          const b = Math.sqrt(c ** 2 - a ** 2);
          output.textContent = " " + b;
        }
        if (Number.isNaN(c) && !Number.isNaN(a) && !Number.isNaN(b)) {
          const c = Math.sqrt(a ** 2 + b ** 2);
          output.textContent = " " + c;
        }
        console.log(a, b, typeof output.textContent, "valuesssssss");

        context.beginPath();
        context.moveTo(100, a);
        context.lineTo(a, b);
        context.lineTo(b, output.textContent);
        context.closePath();
        context.lineWidth = 10;
        context.strokeStyle = "#000";
        context.stroke();
        // the fill color
        context.fillStyle = "#ddd";
        context.fill();
        console.log("value", output.textContent);
        console.log(output, "outpt");
        return output.textContent;
      }
    </script>
  </body>
</html>

I was trying from the couple of weeks , I am unable to draw labels on each side of triangle , I have two input fields where I pass values of a and b from where I calculate c and then at the end the hypotenuse then by using canvas I generate that triangle, now I want to labeling the sides like a , b ,c is is possible let me know please. I am using Pythagoras theorem canvas java script

1

There are 1 best solutions below

0
On

Below is a very simple example that draws text and a shape, you can use that as a starting point and build what you need, in my example I'm drawing a multiple shapes to show that you can draw things other than just a triangle, all that is needed are the coordinates, getting those coordinates is just math question, you already have that figured out.

The issues I think you might face is on the placement of the text, as you can see I'm drawing the text right on top of the same given coordinate, but you can adjust that to suit your needs.

var canvas = document.querySelector("#myCanvas");
var context = canvas.getContext("2d");
context.font = "50px Arial";
context.fillStyle = "red";
context.textAlign = "center";
context.textBaseline = "middle"

function drawShape(points) {
  context.beginPath();
  context.moveTo(points[points.length-1].x, points[points.length-1].y);  
  for (let i=0; i < points.length; i++ ) {
    context.lineTo(points[i].x, points[i].y);
    context.fillText(points[i].text, points[i].x, points[i].y);
  }
  context.closePath();
  context.stroke();  
}

drawShape([
  { x: 20, y: 20, text: "o" }, 
  { x: 20, y: 80, text: "p" }, 
  { x: 80, y: 80, text: "q" }
])

drawShape([
  { x: 100, y: 20, text: "r" }, 
  { x: 120, y: 50, text: "s" }, 
  { x: 160, y: 60, text: "t" },
  { x: 180, y: 25, text: "u" }
])
<canvas id="myCanvas" width="200" height="100"></canvas>