UNPKG

@polygonjs/polygonjs

Version:

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

12 lines (10 loc) 240 B
/** * returns the math function sqrt(x) * * */ import {MathFunctionArg1OperationFactory} from './_Math_Arg1Operation'; export class SqrtJsNode extends MathFunctionArg1OperationFactory('sqrt', { inputPrefix: 'val', out: 'sqrt', }) {}