Skip to content
Serguei Kalentchouk edited this page Jan 12, 2018 · 20 revisions

Angle

AbsoluteAngle

Get the absolute value of an angle

Type Name Description
➡️ angle input Input value
⬅️ angle output Return value

AddAngle

Add two angles together

Type Name Description
➡️ angle inputA First input value
➡️ angle inputB Second input value
⬅️ angle output Return value

DivideAngle

Divide angle by value

Type Name Description
➡️ angle inputA First input value
➡️ double inputB Second input value
⬅️ angle output Return value

MultiplyAngle

Multiply angle by value

Type Name Description
➡️ angle inputA First input value
➡️ angle inputB Second input value
⬅️ angle output Return value

LerpAngle

Get linear interpolation between two angles

Type Name Description
➡️ angle inputA First input value
➡️ angle inputB Second input value
➡️ float alpha Blend value [0, 1]
⬅️ angle output Return value

SubtractAngle

Subtract one angle from another

Type Name Description
➡️ angle inputA First input value
➡️ angle inputB Second input value
⬅️ angle output Return value

Trig

Acos

Get the acos of value

Type Name Description
➡️ double input Input value
⬅️ angle output Return value

Asin

Get the asin of value

Type Name Description
➡️ double input Input value
⬅️ angle output Return value

Atan

Get the atan of value

Type Name Description
➡️ double input Input value
⬅️ angle output Return value

Cos

Get the cos of angle

Type Name Description
➡️ angle input Input value
⬅️ double output Return value

Sin

Get the sin of angle

Type Name Description
➡️ angle input Input value
⬅️ double output Return value

Tan

Get the tan of angle

Type Name Description
➡️ angle input Input value
⬅️ double output Return value
Clone this wiki locally