Skip to content

Instantly share code, notes, and snippets.

@pedoc
Created July 31, 2020 12:57
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 pedoc/76ca34b78b21ed706a2d5c5d827bd99c to your computer and use it in GitHub Desktop.
Save pedoc/76ca34b78b21ed706a2d5c5d827bd99c to your computer and use it in GitHub Desktop.
public static Func<float,float> Line(PointF a, PointF b)
{
return x =>
{
var k = (b.Y - a.Y) / (b.X - a.X);
return k * (x - a.X) + a.Y;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment