Files
2026-07-13 13:13:17 +08:00

18 lines
637 B
C#

namespace Lib.point.combine;
[Guid("ab6ab34f-4c6e-41ef-af69-48bb9393651b")]
internal sealed class PairPointsForLines : Instance<PairPointsForLines>
{
[Output(Guid = "943d1c32-e4e7-4502-8927-543b13ed0283")]
public readonly Slot<BufferWithViews> OutBuffer = new();
[Input(Guid = "b571a5e9-abec-47df-ac07-a7d1e60163d9")]
public readonly InputSlot<BufferWithViews> GPoints = new();
[Input(Guid = "e14366ed-0591-424d-a8ab-36f8380dd614")]
public readonly InputSlot<BufferWithViews> GTargets = new();
[Input(Guid = "10a6c6d5-9685-4bde-a1b6-e5456c886898")]
public readonly InputSlot<bool> SetWTo01 = new();
}