UNPKG

621 BTypeScriptView Raw
1import { LineSegments } from '../objects/LineSegments';
2import { ColorRepresentation } from '../utils';
3
4export class PolarGridHelper extends LineSegments {
5 /**
6 * @param [radius=10]
7 * @param [radials=16]
8 * @param [circles=8]
9 * @param [divisions=64]
10 * @param [color1=0x444444]
11 * @param [color2=0x888888]
12 */
13 constructor(
14 radius?: number,
15 radials?: number,
16 circles?: number,
17 divisions?: number,
18 color1?: ColorRepresentation,
19 color2?: ColorRepresentation,
20 );
21
22 /**
23 * @default 'PolarGridHelper'
24 */
25 type: string;
26}