@pmndrs/handle
Version:
framework agnostic expandable handle implementation for threejs
10 lines (9 loc) • 416 B
TypeScript
import { BufferGeometry, Euler, LineBasicMaterial, LineSegments } from 'three';
import { HandlesContext } from './context.js';
export declare class HandlesAxisHighlight extends LineSegments<BufferGeometry, LineBasicMaterial> {
private readonly context;
private readonly rotationOffset;
constructor(context: HandlesContext, rotationOffset: Euler);
update(): void;
bind(tag: string): () => void;
}