UNPKG

@egjs/view3d

Version:

Fast & Customizable glTF 3D model viewer, packed with full of features!

27 lines (23 loc) 656 B
/* * Copyright (c) 2020 NAVER Corp. * egjs projects are licensed under the MIT license */ import AnimationControl from "./AnimationControl"; import CameraControl from "./CameraControl"; import OrbitControl from "./OrbitControl"; import RotateControl, { RotateControlOptions } from "./RotateControl"; import TranslateControl, { TranslateControlOptions } from "./TranslateControl"; import ZoomControl, { ZoomControlOptions } from "./ZoomControl"; export { AnimationControl, OrbitControl, RotateControl, TranslateControl, ZoomControl }; export type { CameraControl, RotateControlOptions, TranslateControlOptions, ZoomControlOptions };