Skip to content

Instantly share code, notes, and snippets.

@mattlundstrom
Created June 15, 2012 19:27
Show Gist options
  • Save mattlundstrom/2938314 to your computer and use it in GitHub Desktop.
Save mattlundstrom/2938314 to your computer and use it in GitHub Desktop.
Flash Interpoint
function calulateInterpoint(p1:Point,p2:Point,percent:Number ):Point
{
var temporaryPoint:Point = new Point;
temporaryPoint.x = p1.x + ( p2.x - p1.x ) / (100/percent)
temporaryPoint.y = p1.y + ( p2.y - p1.y ) / (100/percent)
return temporaryPoint;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment