The vgLib.floatingSum() system function converts two numbers to double-precision floating point type and returns their sum.
vgLib.floatingSum() is one of a number of functions maintained for compatibility with earlier versions. New code can use standard EGL operators for these purposes.
HEX fields can be used as both the input and the result fields. HEX(8) corresponds to SMALLFLOAT and HEX(16) corresponds to FLOAT.
vgLib.floatingSum(
operand1 FLOAT in,
operand2 FLOAT in)
returns (result FLOAT)
The following example shows the vgLib.floatingSum() function:
myVar01, myVar02, result FLOAT;
myVar01 = 19;
myVar02 = 7;
result = vgLib.floatingSum(myVar01,myVar02);
// result = 26.0