2024-09-22 11:05:41 +08:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
2025-04-24 20:56:44 +08:00
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvMEP
|
2024-09-22 11:05:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
public enum RotationAngle
|
|
|
|
|
|
{
|
|
|
|
|
|
[Description("22.5°")]
|
|
|
|
|
|
TwentyTwoPointFive,
|
|
|
|
|
|
[Description("30°")]
|
|
|
|
|
|
Thirty,
|
|
|
|
|
|
[Description("45°")]
|
|
|
|
|
|
FortyFive,
|
|
|
|
|
|
[Description("60°")]
|
|
|
|
|
|
Sixty,
|
|
|
|
|
|
[Description("90°")]
|
|
|
|
|
|
Ninety
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|