ianmackenzie / elm-geometry-linear-algebra-interop / Geometry.Interop.LinearAlgebra.Point2d

Conversion functions for Point2d.

toVec2 : Point2d units coordinates -> Math.Vector2.Vec2

Convert a Point2d to a Vec2.

Point2d.toVec2 (Point2d.meters 2 3)
--> vec2 2 3

fromVec2 : Math.Vector2.Vec2 -> Point2d units coordinates

Convert a Vec2 to a Point2d.

Point2d.fromVec2 (vec2 2 3)
--> Point2d.unsafe { x = 2, y = 3 }