/** * @author Yannick Deubel (https://github.com/yandeu) * @copyright Copyright (c) 2022 Yannick Deubel; Project Url: https://github.com/enable3d/enable3d * @license {@link https://github.com/enable3d/enable3d/blob/master/LICENSE|LGPL-3.0} */ import { Scene, Texture } from 'three'; import { ExtendedMesh } from '@enable3d/common/dist/extendedMesh.js'; import { HeightMapConfig } from '@enable3d/common/dist/types.js'; export default class HeightMap { private scene; constructor(scene: Scene); add(texture: Texture, config?: HeightMapConfig): ExtendedMesh | undefined; make(texture: Texture, config?: HeightMapConfig): ExtendedMesh | undefined; } //# sourceMappingURL=heightmap.d.ts.map