20 lines
382 B
C#
20 lines
382 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroTunnel
|
|||
|
|
{
|
|||
|
|
internal enum SegmentPlacementType
|
|||
|
|
{
|
|||
|
|
[Description("通缝")]
|
|||
|
|
Common,
|
|||
|
|
|
|||
|
|
[Description("摇摆错缝")]
|
|||
|
|
Swing,
|
|||
|
|
|
|||
|
|
[Description("顺时针错缝")]
|
|||
|
|
ClockWise,
|
|||
|
|
|
|||
|
|
[Description("逆时针错缝")]
|
|||
|
|
CounterClockWise
|
|||
|
|
}
|
|||
|
|
}
|