pub fn project_local(
point: Point2d,
origin: Point2d,
x_axis: Vector2d,
y_axis: Vector2d,
) -> Point2dExpand description
Projects a point onto a local coordinate system.
ยงParameters
point- The point to projectorigin- The origin of the coordinate systemx_axis- The basis vector pointing in the positive x-axis.y_axis- The basis vector pointing in the positive y-axis.