ProtoFlux:Is Infinity: Difference between revisions

From Resonite Wiki
Stub
 
Filled in the node page.
 
Line 4: Line 4:
|Inputs=
|Inputs=
[
[
{"Name":"", "Type":"Dummy"}
{"Name":"Value", "Type":"Dummy"}
]
]
|Outputs=
|Outputs=
[
[
{"Name":"", "Type":"bool"}
{"Name":"*", "Type":"bool"}
]
]
|}}
|}}
The '''Is Infinity''' node takes in a value and returns if this value is <code>Infinity</code> or <code>-Infinity</code>.
== Inputs ==
=== Value (Pseudo-Generic) ===
The value to check.
== Outputs ==
=== * ([[Type:bool|bool]]) ===
Returns if the value is <code>Infinity</code> or <code>-Infinity</code>.
== See Also ==
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Division_(mathematics) Infinity] & [https://en.wikipedia.org/wiki/NaN NaN].
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/api/system.single.positiveinfinity?view=net-8.0 float positive infinity], [https://learn.microsoft.com/en-us/dotnet/api/system.single.negativeinfinity?view=net-8.0 float negative infinity], [https://learn.microsoft.com/en-us/dotnet/api/system.double.positiveinfinity?view=net-8.0 double positive infinity], & [https://learn.microsoft.com/en-us/dotnet/api/system.double.negativeinfinity?view=net-8.0 double negative infinity].


[[Category:ProtoFlux:Stubs]]
[[Category:ProtoFlux:Stubs]]
[[Category:ProtoFlux:Operators]]
[[Category:ProtoFlux:Operators]]

Latest revision as of 09:09, 27 June 2024

Is ∞
Value
*
Operators

The Is Infinity node takes in a value and returns if this value is Infinity or -Infinity.

Inputs

Value (Pseudo-Generic)

The value to check.

Outputs

* (bool)

Returns if the value is Infinity or -Infinity.

See Also