Spaces:
Sleeping
Sleeping
File size: 527 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import { LineSegments } from '../objects/LineSegments';
import { ColorRepresentation } from '../utils';
export class PolarGridHelper extends LineSegments {
/**
* @param [radius=10]
* @param [radials=16]
* @param [circles=8]
* @param [divisions=64]
* @param [color1=0x444444]
* @param [color2=0x888888]
*/
constructor(radius?: number, radials?: number, circles?: number, divisions?: number, color1?: ColorRepresentation, color2?: ColorRepresentation);
/**
* @default 'PolarGridHelper'
*/
type: string;
}
|