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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user