Quartz Composer JavaScript Reference © Cybero Designs  

exp

Type Method
Format Math.exp (value)
Commentary
Return the power of e.
Sample code - QC 2 JavaScript
n = inputs [0] / 3;
outputs [0] = Math.exp (n);
Sample code - QC 3 JavaScript
function (__number out) main (__number input[1])
{
var result = new Object();
var n = input / 3;
result.out = Math.exp(n);
return result;
}

Return to the Start Page