@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
35 lines (34 loc) • 989 B
TypeScript
import { NodeGeometryBlock } from "../nodeGeometryBlock.js";
import type { NodeGeometryConnectionPoint } from "../nodeGeometryBlockConnectionPoint.js";
/**
* Block used to normalize lerp between 2 values
*/
export declare class GeometryNLerpBlock extends NodeGeometryBlock {
/**
* Creates a new GeometryNLerpBlock
* @param name defines the block name
*/
constructor(name: string);
/**
* Gets the current class name
* @returns the class name
*/
getClassName(): string;
/**
* Gets the left operand input component
*/
get left(): NodeGeometryConnectionPoint;
/**
* Gets the right operand input component
*/
get right(): NodeGeometryConnectionPoint;
/**
* Gets the gradient operand input component
*/
get gradient(): NodeGeometryConnectionPoint;
/**
* Gets the output component
*/
get output(): NodeGeometryConnectionPoint;
protected _buildBlock(): this | undefined;
}