UNPKG

three

Version:

JavaScript 3D library

18 lines (14 loc) 438 B
import { Color } from './../math/Color'; import { LineSegments } from './../objects/LineSegments'; export class GridHelper extends LineSegments { constructor( size: number, divisions: number, color1?: Color | string | number, color2?: Color | string | number ); /** * @deprecated Colors should be specified in the constructor. */ setColors( color1?: Color | string | number, color2?: Color | string | number ): void; }