UNPKG

@qctrl/visualizer

Version:

The Q-CTRL Visualizer is a package for displaying animated 3d Bloch sphere visualizations.

6 lines (5 loc) 281 B
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 */ export default function createLineArcVerticesArray(pointStart: Vector3Tuple, pointEnd: Vector3Tuple): number[];