import { Point3d } from "@lincode/math"
import Curve from "../display/Curve"

const curve = new Curve()
curve.points = [
    new Point3d(289, 452, 56),
    new Point3d(-53, 171, -14),
    new Point3d(-91, 176, -6),
    new Point3d(-383, 491, 47)
]
