UNPKG

340 BTypeScriptView Raw
1import { LineSegments } from '../objects/LineSegments';
2import { Color } from '../math/Color';
3
4export class PolarGridHelper extends LineSegments {
5
6 constructor(
7 radius: number,
8 radials: number,
9 circles: number,
10 divisions: number,
11 color1: Color | string | number | undefined,
12 color2: Color | string | number | undefined
13 );
14
15}