Skip to content

Instantly share code, notes, and snippets.

@MrHuli
Created September 13, 2017 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrHuli/d041be55994b33076cbb0c30747edf9a to your computer and use it in GitHub Desktop.
Save MrHuli/d041be55994b33076cbb0c30747edf9a to your computer and use it in GitHub Desktop.
drawLine : function( x1, y1, x2, y2 ) {
var x = x1 - x2,
y = y1 - y2,
length = Math.sqrt( ( x * x ) + ( y * y ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment