use-point
Validated 2D point primitives for the RustUse geometry workspace.
use-point keeps coordinate validation and point-to-point operations separate from higher-level
geometry shapes. It composes with use-vector for translation and point differences.
Example
use Point2;
use Vector2;
let start = try_new?;
let end = start.translate;
assert_eq!;
assert_eq!;
# Ok::