MathsEngine 0.1.2
Loading...
Searching...
No Matches
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123456]
 NBaruah
 NMathsEngine
 NFormula
 NArithmetic
 CAbsoluteReturns the absolute value of a number
 CAdditionNodeA math node that sums the results of multiple child nodes
 CArithmeticBase
 CDivisionNodeA math node that divides one node by another
 CModuloCalculates the modulo (remainder) of two values
 CMultiplicationNodeA math node that multiplies multiple child nodes together
 CNegateNegates a numeric value
 CPowerRaises a value to the power of another value
 CSubtractionNodeA math node that subtracts multiple values sequentially
 NConstants
 CConstantNodeA constant value node
 NTrigonometry
 CDeg2RadConstant value used to convert degrees to radians
 CRad2DegConstant value used to convert radians to degrees
 CAtan2Calculates the angle from a 2D vector using the Y and X components
 CCosCalculates the cosine of an angle
 CSinCalculates the sine of an angle
 CTanCalculates the tangent of an angle
 NRandom
 CUnityRangeGenerates a random value within a specified range
 CXorShift32Random
 NUtility
 NRange
 CClampRestricts a value so it stays within a specified range
 CInverseLerpCalculates the interpolation factor between two values
 CLerpLinearly interpolates between two values
 CAnimationCurveNodeEvaluates a Unity AnimationCurve using the value produced by a time node
 CBaseRangeNode
 CDeltaTimeNodeReturns Unity's frame delta time
 CFixedDeltaTimeNodeReturns Unity's fixed update timestep
 CMaxNodeReturns the larger of two values
 CMinNodeReturns the smaller of two values
 CMoveTowardsNodeGradually moves a value toward a target value
 CPingPongNodeProduces a repeating ping-pong value between 0 and a specified length
 CSmoothStepNodePerforms smooth interpolation between two values
 CTimeNodeReturns the current Unity runtime time
 NCore
 CBaseMathNodeBase class for all math nodes used in the formula engine
 CMathFormulaScriptableObject to hold and access Maths Formula
 NAttribute
 CMathNodeCategoryAttributeAttribute used to identify and category Math formula
 NComparisonOperators
 CComparisonOperatorBase class for all comparison operators used in the math engine
 CGreaterChecks whether the first value is greater than the second
 CLessChecks whether the first value is less than the second
 CGreaterOrEqualChecks whether the first value is greater than or equal to the second
 CLessOrEqualChecks whether the first value is less than or equal to the second
 CEqualChecks whether two values are exactly equal
 CNotEqualChecks whether two values are not equal
 CApproximatelyChecks whether two values are approximately equal within a tolerance
 NLogicalOperation
 CLogicalNodeA math node that evaluates a chain of comparison expressions and returns one of two values
 CComparisonEntryRepresents a single comparison operation within a logical chain
 CLogicalOperatorBase class for logical operators used to combine boolean results
 CAndOperatorLogical AND operator
 COrOperatorLogical OR operator
 CXorOperatorLogical XOR (exclusive OR) operator
 CMathEngineExample