web3d / node_modules /three /src /helpers /PolarGridHelper.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
570 Bytes
import { LineSegments } from '../objects/LineSegments';
import { VertexColors } from '../constants.js';
import { LineBasicMaterial } from '../materials/LineBasicMaterial';
import { Float32BufferAttribute } from '../core/BufferAttribute';
import { BufferGeometry } from '../core/BufferGeometry';
import { Color } from '../math/Color';
export class PolarGridHelper {
constructor(
radius: number,
radials: number,
circles: number,
divisions: number,
color1: Color | string | number | undefined,
color2: Color | string | number | undefined
);
}