namespace Unity.VisualScripting
{
///
/// Returns the quotient of two scalars.
///
[UnitCategory("Math/Scalar")]
[UnitTitle("Divide")]
public sealed class ScalarDivide : Divide
{
protected override float defaultDividend => 1;
protected override float defaultDivisor => 1;
public override float Operation(float a, float b)
{
return a / b;
}
}
}