From 222431190b9e0dd43fe2a5c505c745889ea6b486 Mon Sep 17 00:00:00 2001 From: AJ Date: Fri, 22 Nov 2019 06:25:38 -0500 Subject: [PATCH] Added comments for bend class. --- ExportDXF/Bend.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ExportDXF/Bend.cs b/ExportDXF/Bend.cs index 6a1981a..45e0f2e 100644 --- a/ExportDXF/Bend.cs +++ b/ExportDXF/Bend.cs @@ -2,13 +2,20 @@ { internal class Bend { - public BendDirection Direction { get; set; } - public double BendLineAngle { get; set; } + public BendDirection Direction { get; set; } + public double Angle { get; set; } + /// + /// X coordinate of the bend line in meters + /// public double X { get; set; } + + /// + /// Y coordinate of the bend line in meters + /// public double Y { get; set; } } } \ No newline at end of file