ProtoFlux:Is Infinity: Difference between revisions

From Resonite Wiki
Stub
 
not a stub
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
|Inputs=
|Inputs=
[
[
{"Name":"", "Type":"Dummy"}
{"Name":"Value", "Type":"Dummy"}
]
]
|Outputs=
|Outputs=
[
[
{"Name":"", "Type":"bool"}
{"Name":"*", "Type":"bool"}
]
]
|}}
|}}


[[Category:ProtoFlux:Stubs]]
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:Operators]]
[[Category:ProtoFlux:Operators]]

Latest revision as of 17:35, 10 February 2025

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