starry / backend /libs /three /renderers /webgl /WebGLGeometries.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { WebGLAttributes } from './WebGLAttributes';
import { WebGLInfo } from './WebGLInfo';
import { BufferAttribute } from '../../core/BufferAttribute';
import { BufferGeometry } from '../../core/BufferGeometry';
import { Object3D } from '../../core/Object3D';
export class WebGLGeometries {
constructor(gl: WebGLRenderingContext, attributes: WebGLAttributes, info: WebGLInfo);
get(object: Object3D, geometry: BufferGeometry): BufferGeometry;
update(geometry: BufferGeometry): void;
getWireframeAttribute(geometry: BufferGeometry): BufferAttribute;
}