Page 1 of 1

Missing math expressions in the manuals

PostPosted: Sat Jan 21, 2017 1:48 pm
by jussi rovanpera
Hi,

I noticed that the Fusion 8 manuals (user, tool, scripting) don't have all math expressions covered, at least ceil and floor are missing. Is there a complete list of the expressions somewhere?

Re: Missing math expressions in the manuals

PostPosted: Sat Jan 21, 2017 3:01 pm
by Okke Verbart
Hey - I have never found a full list, but what I tend to do is to look up LUA syntax and in a lot of cases this will work out of the box. For instance:

http://lua-users.org/wiki/MathLibraryTutorial

Re: Missing math expressions in the manuals

PostPosted: Sat Jan 21, 2017 4:30 pm
by Chad Capeland
jussi rovanpera wrote:Hi,

I noticed that the Fusion 8 manuals (user, tool, scripting) don't have all math expressions covered, at least ceil and floor are missing. Is there a complete list of the expressions somewhere?


Which expressions? If it's scripting, then there's the issue of Fusion supporting 3+ scripting languages. The thought over many years is that the docs shouldn't teach you Lua or Python or Cg or OpenCL or whatever, they should just tell you about the interfaces and any proprietary functions or libs.

Re: Missing math expressions in the manuals

PostPosted: Sat Jan 21, 2017 5:27 pm
by jussi rovanpera
Not for scripting, just when using expressions. For example I can use math.ceil and math.floor, but those are nowhere in the manuals, so I was just wondering what else is not there...

Re: Missing math expressions in the manuals

PostPosted: Sun Jan 22, 2017 4:02 am
by Chad Capeland
jussi rovanpera wrote:Not for scripting, just when using expressions. For example I can use math.ceil and math.floor, but those are nowhere in the manuals, so I was just wondering what else is not there...


It's just Lua.

Re: Missing math expressions in the manuals

PostPosted: Sun Jan 22, 2017 8:44 am
by jussi rovanpera
Got it, thanks Okke and Chad!