PolarGridHelper.d.ts 571 B

12345678910111213141516171819
  1. import { LineSegments } from '../objects/LineSegments';
  2. import { VertexColors } from '../constants.js';
  3. import { LineBasicMaterial } from '../materials/LineBasicMaterial';
  4. import { Float32BufferAttribute } from '../core/BufferAttribute';
  5. import { BufferGeometry } from '../core/BufferGeometry';
  6. import { Color } from '../math/Color';
  7. export class PolarGridHelper {
  8. constructor(
  9. radius: number,
  10. radials: number,
  11. circles: number,
  12. divisions: number,
  13. color1: Color | string | number | undefined,
  14. color2: Color | string | number | undefined
  15. );
  16. }