User:Inthar/Code: Difference between revisions

Inthar (talk | contribs)
Created page with "== planegeometry.rs == <syntaxhighlight lang="rs"> // plane_geometry.rs // Geometry of points and lines in the plane, implemented with rational numbers. The implementation is..."
 
Inthar (talk | contribs)
No edit summary
Line 20: Line 20:
     OnTheLine, // The point is on the line.
     OnTheLine, // The point is on the line.
}
}


fn is_between(a:r64, b:r64, c:r64) -> bool {
fn is_between(a:r64, b:r64, c:r64) -> bool {