mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import {
|
|
BufferGeometry,
|
|
Geometry
|
|
} from '../../../src/Three';
|
|
|
|
export class SimplifyModifier {
|
|
|
|
constructor();
|
|
modify( geometry: BufferGeometry | Geometry, count: number ): BufferGeometry;
|
|
|
|
}
|