Answers for "javascript angle equation of a line"

1

javascript angle equation of a line

// point 1 (x1, y1) or origine of vertex
// point 2 (x2, y2)
var dx = x2 - x1
var dy = y2 - y1
var ang = Math.atan2(dy, dx) * 180 / Math.PI;
Posted by: Guest on November-12-2020

Code answers related to "javascript angle equation of a line"

Code answers related to "Javascript"

Browse Popular Code Answers by Language