命名优化,达芬奇字体修改工具
This commit is contained in:
@@ -218,7 +218,7 @@ public class MetroTunnelCmd : ExternalCommand
|
||||
}
|
||||
}
|
||||
|
||||
Document.Invoke(ts =>
|
||||
Document.Invoke(_ =>
|
||||
{
|
||||
var familySymbol = Document
|
||||
.OfClass<FamilySymbol>()
|
||||
|
||||
@@ -6,40 +6,40 @@ namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroTunnel
|
||||
public partial class MetroTunnelViewModel : ObservableObject
|
||||
{
|
||||
[ObservableProperty]
|
||||
private int assembleSelectedIndex;
|
||||
public partial int AssembleSelectedIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 后环邻接块
|
||||
/// </summary>
|
||||
[ObservableProperty]
|
||||
private double backTubeAngle = 50.0;
|
||||
public partial double BackTubeAngle { get; set; } = 50.0;
|
||||
|
||||
/// <summary>
|
||||
/// 前环邻接块跨度
|
||||
/// </summary>
|
||||
[ObservableProperty]
|
||||
private double frontTubeAngle = 60;
|
||||
public partial double FrontTubeAngle { get; set; } = 60;
|
||||
|
||||
[ObservableProperty]
|
||||
private double staggerAngle = 10;
|
||||
public partial double StaggerAngle { get; set; } = 10;
|
||||
|
||||
/// <summary>
|
||||
/// 标准块
|
||||
/// </summary>
|
||||
[ObservableProperty]
|
||||
private double standardTubeAngle = 67.5;
|
||||
public partial double StandardTubeAngle { get; set; } = 67.5;
|
||||
|
||||
[ObservableProperty]
|
||||
private double startAngle = 10.0;
|
||||
public partial double StartAngle { get; set; } = 10.0;
|
||||
|
||||
[ObservableProperty]
|
||||
private double tubeOuterDiameter = 6000;
|
||||
public partial double TubeOuterDiameter { get; set; } = 6000;
|
||||
|
||||
[ObservableProperty]
|
||||
private double tubeThickness = 300.0;
|
||||
public partial double TubeThickness { get; set; } = 300.0;
|
||||
|
||||
[ObservableProperty]
|
||||
private double tubeWidth = 2000.0;
|
||||
public partial double TubeWidth { get; set; } = 2000.0;
|
||||
|
||||
[RelayCommand]
|
||||
private static void Confirm(object obj)
|
||||
|
||||
Reference in New Issue
Block a user