コード例 #1
0
 public static PathStep Default(int frame_size, PathStep parent = null)
 {
     return new PathStep(frame_size, parent)
     {
         Index1 = 0,
         Index2 = 0,
         Operation = 0
     };
 }
コード例 #2
0
 public PathStep(int frame_size, PathStep parent = null)
 {
     this.FrameSize = frame_size;
     this.Parent = parent;
 }