public static PathStep Default(int frame_size, PathStep parent = null) { return new PathStep(frame_size, parent) { Index1 = 0, Index2 = 0, Operation = 0 }; }
public PathStep(int frame_size, PathStep parent = null) { this.FrameSize = frame_size; this.Parent = parent; }