添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using MainShell.Common;
|
||||
using MainShell.Models;
|
||||
using MainShell.Models.Wafer;
|
||||
using MainShell.Recipe.BaseBoard.Model;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MainShell.Process
|
||||
{
|
||||
public class DieTransferPathRequest
|
||||
{
|
||||
public DieTransferPathRequest()
|
||||
{
|
||||
DieCandidates = Array.Empty<Die>();
|
||||
PadCandidates = Array.Empty<Pad>();
|
||||
TransPathType = TransPathType.Sequence;
|
||||
PadRowDirectionStrategy = DieTransferRowTraversalStrategy.AllPositive;
|
||||
DieRowDirectionStrategy = DieTransferRowTraversalStrategy.Serpentine;
|
||||
SkipNgDie = true;
|
||||
}
|
||||
|
||||
public IReadOnlyCollection<Die> DieCandidates { get; set; }
|
||||
|
||||
public IReadOnlyCollection<Pad> PadCandidates { get; set; }
|
||||
|
||||
public RegionModel DieRegion { get; set; }
|
||||
|
||||
public RegionModel SubstrateRegion { get; set; }
|
||||
|
||||
public TransPathType TransPathType { get; set; }
|
||||
|
||||
public DieTransferRowTraversalStrategy PadRowDirectionStrategy { get; set; }
|
||||
|
||||
public DieTransferRowTraversalStrategy DieRowDirectionStrategy { get; set; }
|
||||
|
||||
public bool SkipNgDie { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user