Box3Helper.d.ts 293 B

1234567891011
  1. import { Object3D } from './../core/Object3D';
  2. import { Box3 } from './../math/Box3';
  3. import { Color } from './../math/Color';
  4. import { LineSegments } from './../objects/LineSegments';
  5. export class Box3Helper {
  6. constructor(object?: Object3D, color?: Color);
  7. type: string;
  8. box: Box3;
  9. }
粤ICP备19079148号