@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.
29 lines • 1.01 kB
JavaScript
import { FlowGraphCachedOperationBlock } from "./flowGraphCachedOperationBlock.js";
/**
* @internal
* The base block for all unary operation blocks. Receives an input of type InputT, and outputs a value of type ResultT.
*/
export class FlowGraphUnaryOperationBlock extends FlowGraphCachedOperationBlock {
constructor(inputRichType, resultRichType, _operation, _className, config) {
super(resultRichType, config);
this._operation = _operation;
this._className = _className;
this.a = this.registerDataInput("a", inputRichType);
}
/**
* the operation performed by this block
* @param context the graph context
* @returns the result of the operation
*/
_doOperation(context) {
return this._operation(this.a.getValue(context));
}
/**
* Gets the class name of this block
* @returns the class name
*/
getClassName() {
return this._className;
}
}
//# sourceMappingURL=flowGraphUnaryOperationBlock.js.map