User:Inthar/Code: Difference between revisions
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..." |
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 { | ||