File size: 1,122 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | namespace Unity.VisualScripting
{
[UnitOrder(406)]
public abstract class Project<T> : Unit
{
/// <summary>
/// The vector to project.
/// </summary>
[DoNotSerialize]
public ValueInput a { get; private set; }
/// <summary>
/// The vector on which to project.
/// </summary>
[DoNotSerialize]
public ValueInput b { get; private set; }
/// <summary>
/// The projection of A on B.
/// </summary>
[DoNotSerialize]
[PortLabelHidden]
public ValueOutput projection { get; private set; }
protected override void Definition()
{
a = ValueInput<T>(nameof(a));
b = ValueInput<T>(nameof(b));
projection = ValueOutput(nameof(projection), Operation).Predictable();
Requirement(a, projection);
Requirement(b, projection);
}
private T Operation(Flow flow)
{
return Operation(flow.GetValue<T>(a), flow.GetValue<T>(b));
}
public abstract T Operation(T a, T b);
}
}
|