@babylonjs/viewer
Version:
The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.
33 lines (30 loc) • 1.09 kB
JavaScript
import { F as FlowGraphCachedOperationBlock } from './flowGraphCachedOperationBlock-oE7khWes.esm.js';
/**
* @internal
* The base block for all unary operation blocks. Receives an input of type InputT, and outputs a value of type ResultT.
*/
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;
}
}
export { FlowGraphUnaryOperationBlock as F };
//# sourceMappingURL=flowGraphUnaryOperationBlock-Bewxi-_r.esm.js.map