own-tiles-renderer2
Version:
https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification
21 lines (13 loc) • 423 B
TypeScript
import { FeatureTable, BatchTable } from '../utilities/FeatureTable';
export interface I3DMBaseResult {
version : String;
featureTable: FeatureTable;
batchTable : BatchTable;
glbBytes : Uint8Array;
}
export class I3DMLoaderBase {
workingPath : string;
resolveExternalURL( url : string ) : string;
load( url : string ) : Promise< I3DMBaseResult >;
parse( buffer : ArrayBuffer ) : Promise< I3DMBaseResult >;
}