From a2b89318e1212b3c6b60154cda3ca7bf3ad38121 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 1 Oct 2025 09:42:22 -0400 Subject: [PATCH] Changed mm to inches in sheet metal properties --- ExportDXF/Utilities/SheetMetalProperties.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ExportDXF/Utilities/SheetMetalProperties.cs b/ExportDXF/Utilities/SheetMetalProperties.cs index ad5ffba..71cd057 100644 --- a/ExportDXF/Utilities/SheetMetalProperties.cs +++ b/ExportDXF/Utilities/SheetMetalProperties.cs @@ -6,7 +6,7 @@ public class SheetMetalProperties { /// - /// Material thickness in millimeters. + /// Material thickness /// public double Thickness { get; set; } @@ -16,12 +16,12 @@ public double KFactor { get; set; } /// - /// Bend radius in millimeters. + /// Inside bend radius /// public double BendRadius { get; set; } /// - /// Bend allowance in millimeters. + /// Bend allowance /// public double BendAllowance { get; set; } @@ -37,7 +37,7 @@ public override string ToString() { - return $"Thickness: {Thickness:F2}mm, K-Factor: {KFactor:F3}, Bend Radius: {BendRadius:F2}mm"; + return $"Thickness: {Thickness:F2}\", K-Factor: {KFactor:F3}, Bend Radius: {BendRadius:F2}\""; } } }