import { Vector3Tuple } from "three";
/**
* Takes a starting vector3 and an ending vector3 and creates an arc in the form of an array of vertices making up the arc
*/exportdefault function createLineArcVerticesArray(pointStart: Vector3Tuple, pointEnd: Vector3Tuple): number[];