UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

19 lines (18 loc) 730 B
/** * convert polar coordinates to xyz cartesian * * */ import { TypedGlNode } from './_Base'; import { ShadersCollectionController } from './code/utils/ShadersCollectionController'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class PolarToCartesianGlParamsConfig extends NodeParamsConfig { polar: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; } export declare class PolarToCartesianGlNode extends TypedGlNode<PolarToCartesianGlParamsConfig> { paramsConfig: PolarToCartesianGlParamsConfig; static type(): string; initializeNode(): void; setLines(shadersCollectionController: ShadersCollectionController): void; } export {};