three
Version:
JavaScript 3D library
29 lines (24 loc) • 561 B
TypeScript
import { LineSegments } from '../objects/LineSegments';
import { Color } from '../math/Color';
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: Color | string | number | undefined,
color2: Color | string | number | undefined
);
/**
* @default 'PolarGridHelper'
*/
type: string;
}