@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.
32 lines • 1.17 kB
JavaScript
import { FlowGraphCachedOperationBlock } from "./flowGraphCachedOperationBlock.js";
/**
* The base block for all binary operation blocks. Receives an input of type
* LeftT, one of type RightT, and outputs a value of type ResultT.
*/
export class FlowGraphBinaryOperationBlock extends FlowGraphCachedOperationBlock {
constructor(leftRichType, rightRichType, resultRichType, _operation, _className, config) {
super(resultRichType, config);
this._operation = _operation;
this._className = _className;
this.a = this.registerDataInput("a", leftRichType);
this.b = this.registerDataInput("b", rightRichType);
}
/**
* the operation performed by this block
* @param context the graph context
* @returns the result of the operation
*/
_doOperation(context) {
const a = this.a.getValue(context);
const b = this.b.getValue(context);
return this._operation(a, b);
}
/**
* Gets the class name of this block
* @returns the class name
*/
getClassName() {
return this._className;
}
}
//# sourceMappingURL=flowGraphBinaryOperationBlock.js.map