From c634aecd4ba47eb7abb44ccf3168d57c25dab2b8 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Mon, 20 Apr 2026 09:18:54 -0400 Subject: [PATCH] docs(core): refresh SourceInfo.Angle doc now that setter wiring lands --- OpenNest.Core/Drawing.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/OpenNest.Core/Drawing.cs b/OpenNest.Core/Drawing.cs index d266f7c..54da9f7 100644 --- a/OpenNest.Core/Drawing.cs +++ b/OpenNest.Core/Drawing.cs @@ -186,10 +186,11 @@ namespace OpenNest /// /// Rotation (radians) that maps the source program geometry to its canonical - /// (MBR-axis-aligned) frame. A value of 0 means the drawing is already canonical. - /// Task 3 will wire setter to populate this via - /// ; for now it is assigned manually by - /// engine helpers (see OpenNest.Engine.CanonicalFrame). + /// (MBR-axis-aligned) frame. Populated automatically by the + /// setter via . A value of 0 means the drawing is + /// already canonical or is true. Callers that mutate + /// in place must invoke + /// to refresh. /// public double Angle { get; set; } }