18 lines
449 B
C#
18 lines
449 B
C#
namespace XP.Hardware.MotionControl.Abstractions.Enums
|
|
{
|
|
/// <summary>
|
|
/// 旋转轴标识 | Rotary Axis Identifier
|
|
/// </summary>
|
|
public enum RotaryAxisId
|
|
{
|
|
/// <summary>探测器摆动 | Detector swing</summary>
|
|
DetectorSwing,
|
|
|
|
/// <summary>载物台旋转 | Stage rotation</summary>
|
|
StageRotation,
|
|
|
|
/// <summary>夹具旋转 | Fixture rotation</summary>
|
|
FixtureRotation
|
|
}
|
|
}
|