Skip to content

Math page

Types of PI in Fusion Engine

These are used for certain miscellaneous math things.

Full version of pi (3.141592653589793238462643383279502884197):

    main.math.PI
A slightly smaller version that python's math library uses (3.141592653589793):
    main.math.SMALLERPI
An extremely shortened version of pi (3.14):
    main.math.SMALLPI

This allows you to get the floor value of a number.

main.math.FLOOR(3.4)

Euler's Number

You can read more about it here.

    main.math.EULERNUMBER