Box3Helper.d.ts 350 B

1234567891011121314151617181920
  1. import { Box3 } from './../math/Box3';
  2. import { Color } from './../math/Color';
  3. import { LineSegments } from './../objects/LineSegments';
  4. export class Box3Helper extends LineSegments {
  5. /**
  6. * @param box
  7. * @param [color=0xffff00]
  8. */
  9. constructor( box: Box3, color?: Color );
  10. /**
  11. * @default 'Box3Helper'
  12. */
  13. type: string;
  14. box: Box3;
  15. }
粤ICP备19079148号