three
Version:
JavaScript 3D library
16 lines (12 loc) • 340 B
TypeScript
import { LineSegments } from '../objects/LineSegments';
import { Color } from '../math/Color';
export class PolarGridHelper extends LineSegments {
constructor(
radius: number,
radials: number,
circles: number,
divisions: number,
color1: Color | string | number | undefined,
color2: Color | string | number | undefined
);
}