pub fn incirclefast(
ax: f64,
ay: f64,
bx: f64,
by: f64,
cx: f64,
cy: f64,
dx: f64,
dy: f64,
) -> f64Expand description
An in-circle test fast test, lacks the same accuracy as incircle
§Parameters
ax: x coordinate of first pointay: y coordinate of first pointbx: x coordinate of second pointby: y coordinate of second pointcx: x coordinate of third pointcy: y coordinate of third pointdx: x coordinate of comparison pointdy: y coordinate of comparison point
§Returns
point d is in circle if the return value is less than 0, otherwise not in circle