Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Closest Square Point //JavaScript Function (See related posts)


Given a dot and a square, it returns the nearest dot over the square.

[UPDATED CODE AND HELP CAN BE FOUND HERE]



//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/math/closest-square-point [v1.0]

closestSquarePoint = function( px, py, x, y, w, h ){
	return { x: px < x ? x : px > x + w ? x + w : px, y: py < y ? y : py > y + h ? y + h : py };
};

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts