Trigonometry Category
- The following list shows the Trigonometry Category Magma nodes available in Krakatoa MX 2.x.
- These nodes implement various trigonometry functions.
- The ACos operator has one input and one output.
- The input must be a Float value in the range from -1.0 to 1.0.
- The output is inverse of the Cosine function as angle in degrees in the range from 0 to pi.
- The ASin operator has one input and one output.
- The input must be a Float value in the range from -1.0 to 1.0.
- The output is the inverse of the Sine function as an angle in radians.
- The Result is in the range from -pi/2 to pi/2.
- The ATan operator has one input and one output.
- The input must be a Float value.
- The output is the inverse of the Tangent function as angle in radians.
- The result is in the range from -pi/2 to pi/2.
- The ATan2 operator has two inputs and one output.
- The two inputs must be Float values.
- The output is the inverse of the Tangent function of the quotient of the two inputs as an angle in radians.
- The output uses the sign of each input to choose the appropiate quadrant.
- The Result is in the range from -pi to pi.
- The Cos operator has one input and one output.
- The input must be a Float value representing the angle in radians.
- The output is the Cosine function for the given angle.
- The Sin operator has one input and one output.
- The input must be a Float value representing the angle in radians.
- The output is the Sine function for the given angle.
- The Tan operator has one input and one output.
- The input must be a Float value representing the angle in radians.
- The output is the Tangent function (sin(X)/cos(X)) for the given angle.