This is the Bocoup web log with posts from Al, Ben, Boaz, Darius, Greg, Irene, John, Mike, Nate, Nick, Pete, Richard, Rick, Sam, Sam Clearman, Scott and Tim. You should also make sure to checkout code.bocoup.com, where we keep the finished versions of ideas we kick around here.



Feb 23, 2010

Get Triangle Height in JavaScript

How to find the height of a triangle in JavaScript if you only have the 3 vertexes/points of the triangle.

Assuming that XY are the top of your triangle, and X1Y1, X2Y2 are the other two points, you can find the height of the triangle using Pythagorean theorem. This method works for Isosceles or Equilateral triangles.

  // Pythagorean theorem for isosceles or equilateral triangle 
  var getTriangleHeight = function(x, y, x1, y1, x2, y2){
    var b = Math.sqrt(Math.pow(x2-x1, 2) + Math.pow(y2-y1, 2)) /2;
    var c = Math.sqrt(Math.pow(x1-x,  2) + Math.pow(y1-y,  2));    
    return Math.sqrt((c*c)-(b*b));
  };



Comments:




Please send your questions to this address or call Bocoup at 617-379-2752.
This web page is proudly maintained by Bocoup and hosted by (mt) Media Temple.
All code on this website is Open Source. Want to work at Bocoup? Then Apply.
HTML5 Powered with Connectivity / Realtime, CSS3 / Styling, Device Access, Graphics, 3D & Effects, Multimedia, Performance & Integration, Semantics, and Offline & Storage