From 7273cffc1cd4025df14ef6da3a2a22cd82da51bc Mon Sep 17 00:00:00 2001 From: Eugene Cheah Date: Mon, 15 Feb 2016 04:02:08 +0800 Subject: [PATCH] Documentation update --- src/backend/functionNode_webgl.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/backend/functionNode_webgl.js b/src/backend/functionNode_webgl.js index 8c9c003b..9aa99934 100644 --- a/src/backend/functionNode_webgl.js +++ b/src/backend/functionNode_webgl.js @@ -2,13 +2,15 @@ var functionNode_webgl = (function() { /// - /// @function functionNode_webgl + /// Function: functionNode_webgl /// /// Takes in a function node, and does all the AST voodoo required to generate its respective webGL code. /// - /// @param {functionNode} The function node object + /// Parameter: + /// inNode - {functionNode} The function node object /// - /// @returns the webGL function string + /// Returns: + /// the converted webGL function string /// function functionNode_webgl( inNode ) { inNode.webglFunctionString_array = ast_generic( inNode.getJS_AST(), [], inNode );