@qctrl/visualizer
Version:
The Q-CTRL Visualizer is a package for displaying animated 3d Bloch sphere visualizations.
12 lines (11 loc) • 389 B
TypeScript
import { Group, MeshBasicMaterial } from "three";
import { Styles } from "../../styles/theme";
interface Axes {
meshGroup: Group;
material: {
arrowMaterial: MeshBasicMaterial;
axesMaterial: MeshBasicMaterial;
};
}
export default function createAxes({ axes: { color, cylinderRadius, arrowRadius, arrowHeight, axesSegments }, sphere, }: Styles): Axes;
export {};