1 2 3 4 5 6 7 8
use super::*; impl<T> Point3D<T> { /// Construct new point pub fn new(x: T, y: T, z: T) -> Self { Self { x, y, z } } }