Created
December 2, 2010 15:59
-
-
Save lwe/725560 to your computer and use it in GitHub Desktop.
Winkel zwischen zwei Geraden (AB und CD)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A(x1|y1) und B(x2|y2) = Touch start | |
// C(x3|y3) und D(x4|y3) = Current touch point | |
// Vektor AB | |
var AB_x = x2 - x1; | |
var AB_y = y2 - y1; | |
// Vektor CD | |
var CD_x = x4 - x3; | |
var CD_y = y4 - y3; | |
var ort = ((AB_x * CD_x) + (AB_y * CD_y)) / (Math.sqrt(Math.pow(AB_x, 2) + Math.pow(AB_y, 2)) * Math.sqrt(Math.pow(CD_x, 2) + Math.pow(CD_y, 2))); | |
var deg = Math.acos(ort) / Math.PI * 180.0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have an error on your comment in row 2 -> D(x4|y4)