UNPKG

@ulb-darmstadt/photogrammetry-viewer

Version:

```console npm i photogrammetry-viewer ``` This library provides an HTML web component that displays photogrammetric data. The component consists of a combined 3D and 2D viewer. For each view of the 3D model, the 2D image closest to the view is loaded. Fo

13 lines (12 loc) 318 B
import { Euler } from 'three'; export declare class EulerYXZ { angleInRad: Euler; angleInRadAsString(): string; equals(otherEuler: EulerYXZ): boolean; set x(pitchInRad: number); get x(): number; set y(yawInRad: number); get y(): number; set z(rollInRad: number); get z(): number; }