Class ScalarExponentiate
Returns the power of a base and exponent.
Implements
IDisposable
Inherited Members
Namespace: Unity.VisualScripting
Assembly: solution.dll
Syntax
[UnitCategory]
[UnitTitleAttribute]
[UnitOrderAttribute]
public sealed class ScalarExponentiate : Unit, IUnit, IGraphElementWithDebugData, IGraphElement, IGraphItem, INotifiedCollectionItem, IDisposable, IPrewarmable, IAotStubbable, IIdentifiable, IAnalyticsIdentifiable
Properties
base
The base.
Declaration
[DoNotSerializeAttribute]
[PortLabelAttribute]
public ValueInput @base { get; }
Property Value
| Type | Description |
|---|---|
| ValueInput |
exponent
The exponent.
Declaration
[DoNotSerializeAttribute]
[PortLabelAttribute]
public ValueInput exponent { get; }
Property Value
| Type | Description |
|---|---|
| ValueInput |
power
The power of base elevated to exponent.
Declaration
[DoNotSerializeAttribute]
[PortLabelAttribute]
public ValueOutput power { get; }
Property Value
| Type | Description |
|---|---|
| ValueOutput |
Methods
Definition()
Declaration
protected override void Definition()
Overrides
Exponentiate(Flow)
Declaration
public float Exponentiate(Flow flow)
Parameters
| Type | Name | Description |
|---|---|---|
| Flow | flow |
Returns
| Type | Description |
|---|---|
| float |
Implements
IDisposable