@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
22 lines (21 loc) • 1.02 kB
TypeScript
import { TypedSopNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class LineSopParamsConfig extends NodeParamsConfig {
/** @param length of the line */
length: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
/** @param number of points */
pointsCount: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
/** @param start position of the line */
origin: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
/** @param direction of the line */
direction: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class LineSopNode extends TypedSopNode<LineSopParamsConfig> {
paramsConfig: LineSopParamsConfig;
static type(): string;
initializeNode(): void;
private _lastPt;
private _current;
cook(): void;
}
export {};