Refactor Helper to FormatHelper with improved documentation

- Rename Helper class to FormatHelper for clarity
- Add comprehensive XML documentation
- Update all references in BinFileSaver, ArchUnits, and Bin
- Remove unused System.Drawing import
- Better method documentation explaining parameters and return values

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
AJ
2025-11-22 23:02:24 -05:00
parent 70f1380847
commit f55092d877
4 changed files with 24 additions and 12 deletions

View File

@@ -60,7 +60,7 @@ namespace SawCut
public static string FormatFromInches(double totalInches)
{
var feet = Math.Floor(totalInches / 12.0);
var inches = Helper.ConvertToMixedFraction(totalInches - (feet * 12.0));
var inches = FormatHelper.ConvertToMixedFraction(totalInches - (feet * 12.0));
if (feet > 0)
{