ProtoFlux:Value Reciprocal: Difference between revisions

From Resonite Wiki
Stub
 
Filled in this node page.
 
Line 4: Line 4:
|Inputs=
|Inputs=
[
[
{"Type":"Dummy"}
{"Name":"N", "Type":"Dummy"}
]
]
|Outputs=
|Outputs=
[
[
{"Type":"Dummy"}
{"Name":"*", "Type":"Dummy"}
]
]
|}}
|}}


[[Category:ProtoFlux:Stubs]]
The '''Value Reciprocal''' node takes in a value and that will be used to determine the result (or quotient) of a division, where 1 is the dividend, and the value we provide is the divisor.
 
{{Note|This acts similarly to the [[ProtoFlux:Div|Div]] node, but 1 is being provided for us as the value we want to split across our divisor.|information}}
 
== Inputs ==
 
=== N (Pseudo-Generic) ===
 
The value that will be the divisor of the division.
 
== Outputs ==
 
=== * (Pseudo-Generic) ===
 
The result (or quotient) of the division.
 
== See Also ==
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Division_(mathematics) division].
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/arithmetic-operators division] operator.
 
[[Category:ProtoFlux:Operators]]
[[Category:ProtoFlux:Operators]]

Latest revision as of 16:51, 27 June 2024

1/n
N
*
Operators

The Value Reciprocal node takes in a value and that will be used to determine the result (or quotient) of a division, where 1 is the dividend, and the value we provide is the divisor.

This acts similarly to the Div node, but 1 is being provided for us as the value we want to split across our divisor.

Inputs

N (Pseudo-Generic)

The value that will be the divisor of the division.

Outputs

* (Pseudo-Generic)

The result (or quotient) of the division.

See Also

  • Wikipedia's definition of division.
  • Microsoft's documentation on the division operator.