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

20 lines (19 loc) 808 B
import { LitElement } from 'lit'; import { ImageRotationSettings, ModelOrientationSettings } from '../viewer-settings'; export declare class RotationSettingsElement extends LitElement { isColumnMode: boolean; isAutoRotationDisabled: boolean; imageRotationSettings: ImageRotationSettings; modelOrientationSettings: ModelOrientationSettings; private _userAutoRotationOn; render(): import('lit-html').TemplateResult<1>; firstUpdated(): void; updated(changedProperties: Map<string, unknown>): void; private _handleRotationValueChanged; private _handleAutoRotationStateChanged; private _handleDegreeInput; private handleXOrientationChanged; private handleYOrientationChanged; private handleZOrientationChanged; static styles: import('lit').CSSResult; }