You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/@types/three/three-OutlinePass.d.ts

21 lines
309 B

import
{
Camera,
Color,
Face3,
Light,
Material,
Object3D,
Scene,
Vector2,
Vector3,
Vector4
} from "./three-core";
export class OutlinePass
{
constructor(size: Vector2, scene: Scene, camer: Camera);
selectedObjects: Array<Object3D>;
renderCamera: Camera;
}