UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

12 lines (10 loc) 236 B
/** * applies the math function abs(x) * * */ import {MathFunctionArg1OperationFactory} from './_Math_Arg1Operation'; export class AbsJsNode extends MathFunctionArg1OperationFactory('abs', { inputPrefix: 'val', out: 'abs', }) {}