Sin descripción

Garrett Johnson b0a4087cbd comment hace 5 años
example 89930e3bc3 Add variable resolution per camera hace 5 años
src b0a4087cbd comment hace 5 años
test 1c95216396 update tests hace 5 años
.editorconfig 2edd3865b5 initial commit hace 5 años
.eslintrc.json abd3300b01 add jest eslint hace 5 años
.gitignore 2edd3865b5 initial commit hace 5 años
.travis.yml ed9b6a56e7 Create .travis.yml hace 5 años
README.md f6982f9ce9 README update hace 5 años
babel.config.js 2edd3865b5 initial commit hace 5 años
jest.config.js 2edd3865b5 initial commit hace 5 años
package-lock.json 62c754550b fix build hace 5 años
package.json 62c754550b fix build hace 5 años

README.md

3d-tiles-renderer-js

IN PROGRESS

lgtm code quality

In progress three.js implementation of the 3D Tiles format.

The renderer supports a limited subset of the spec for the moment. See Issue #15 for information on which features are not yet implemented.

See it in action here!

In Progress Features

  • Multicamera support
  • Travis integration
  • Performance

Use

import { TilesRenderer } from '3d-tiles-renderer';

// ... initialize three scene ...

const tilesRenderer = new TilesRenderer( './path/to/tileset.json' );
tilesRenderer.setCamera( camera );
tilesRenderer.setResolutionFromRenderer( camera, renderer );
scene.add( tilesRenderer.group );

renderLoop();

function renderLoop() {

	requestAnimationFrame( renderLoop );

	// The camera matrix is expected to be up to date
	// before calling tilesRenderer.update
	camera.updateMatrixWorld();
	tilesRenderer.update();
	renderer.render( camera, scene );

}


API

TilesRenderer

.group

group : Group

.errorTarget

errorTarget = 6 : Number

.errorThreshold

errorThreshold = Infinity : Number

.maxDepth

maxDepth = Infinity : Number

.loadSiblings

loadSiblings = true : Boolean

.lruCache

lruCache = new LRUCache() : LRUCache

NOTE: This cannot be set once update is called for the first time.

.downloadQueue

downloadQueue = new PriorityQueue : PriorityQueue

NOTE: This cannot be set once update is called for the first time.

.parseQueue

parseQueue = new PriorityQueue : PriorityQueue

NOTE: This cannot be modified once update is called for the first time.

.constructor

constructor( url : String )

.update

update() : void

.getBounds

getBounds( box : Box3 ) : void

.raycast

raycast( raycaster : Raycaster, intersects : Array ) : void

.hasCamera

hasCamera( camera : Camera ) : boolean

.setCamera

setCamera( camera : Camera ) : boolean

.deleteCamera

deleteCamera( camera : Camera ) : boolean

.setResolution

setResolution( camera : Camera, resolution : Vector2 ) : boolean
setResolution( camera : Camera, x : number, y : number ) : boolean

.setResolutionFromRenderer

setResolutionFromRenderer( camera : Camera, renderer : WebGLRenderer ) : boolean

LICENSE

The software is available under the Apache V2.0 license.

Copyright © 2020 California Institute of Technology. ALL RIGHTS RESERVED. United States Government Sponsorship Acknowledged. This software may be subject to U.S. export control laws. By accepting this software, the user agrees to comply with all applicable U.S. export laws and regulations. User has the responsibility to obtain export licenses, or other export authority as may be required before exporting such information to foreign countries or providing access to foreign persons. Neither the name of Caltech nor its operating division, the Jet Propulsion Laboratory, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.