Point3.vec constructor

Point3.vec(
  1. Vector3 other
)

Creates a new Point3 from the given Vector3.

Implementation

factory Point3.vec(Vector3 other) => Point3.zero()..setFrom(other);