Category:ProtoFlux:Math: Difference between revisions

Category page
Cleaning ProtoFlux Categories
m fix page link
Line 5: Line 5:
|Interpolation|
|Interpolation|
|Physics|
|Physics|
|Quanity| For working with temperature, weight, force units
|Quantity| For working with temperature, weight, force units
|Random| For generating random values
|Random| For generating random values
|Rects| Bounding Rectangles for working with 2D spaces.
|Rects| Bounding Rectangles for working with 2D spaces.

Revision as of 02:11, 13 February 2024

Subcategories
Category Summary
Constants
Geometry2D
Geometry3D
Interpolation
Physics
Quantity For working with temperature, weight, force units
Random For generating random values
Rects Bounding Rectangles for working with 2D spaces.
Rotation Making one point look at another and Euler Angles.
Shaping
Trigonometry Sine, Cosine, Tangent, and many things Trig Based.
Nodes
Node Name Description
Avg Average 2 values
Avg Multi Average multiple Values
Ceil Round up to the next whole number. (ex: 0.001->1)
Ceil To Int Ceil but outputs an int.
Clamp 01 Stops a number at the ends of a 0<->1 range.
Delta Tells you change in value (frame dependent)
Exp e^x or e^n where x or n is your input value.
Floor Round down to the next whole number. (ex: .999->0)
Floor to Int Floor but outputs an int.
Greatest Common Divisor Finds the biggest number all values can be divided by without a decimal for any of them.
Is Between Checks if a value is inside a range.
Least Common Multiple
Log
Log 10
Log N
Nth Root Can take Sqrt, CubicRoot, to infinity more roots.
Ping Pong Makes an infinitely increasing value bounce back and forth within the range.
Pow Value inputted to the power of anything.
Remap Remaps a value range to another range.
Remap 11 01 Remaps a value range from (1 <-> -1) to (0 <-> 1)
Repeat 01 Makes an infinitely increasing value wrap around a 0 <-> 1 value range
Round rounds a decimal to the closest whole number
Round To Int Round but outputs an int.
Sigmoid
Sign Tells you if a number is positive, negative, or zero with -1, 1, or 0.
Sqrt A faster version of plugging 2 for N in Nth Root.
Value Abs Gets the distance of a value from 0 (gets rid of negative sign)
Value Clamp Stops a number at the ends of the specified range.
Value Max Gets the biggest number of 2 inputs
Value Max Multi Gets the biggest number of all the inputs
Value Min Gets the smallest number of 2 inputs
Value Min Multi Gets the smallest number of all the inputs
Value Repeat Makes an infinitely increasing value wrap around the specified value range