Subject
I have already made geometory.rs. It returns below object with this signature. But, for now, I don't need it in animagram/app and also it is not essential function for rectgrid users.
pub fn as_on_line(point: [Unit; 2], line: Line<2>) -> PointOnGeometry<2>;
pub struct PointOnGeometry<const D: usize> {
pub t: Parameter,
pub projected: Point<D>,
pub signed_distance: Unit,
}
Subject
I have already made geometory.rs. It returns below object with this signature. But, for now, I don't need it in animagram/app and also it is not essential function for rectgrid users.