Changes default precision from 1/32" to 1/16" for cleaner measurements and simplifies output by omitting unnecessary fraction components. - Change default precision from 32 to 16 - Return whole numbers without "-0/N" suffix when fraction rounds to zero - Update documentation to reflect new default precision This makes measurements more readable (e.g., "12" instead of "12-0/16") while maintaining sufficient precision for typical woodworking applications. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
69 lines
2.2 KiB
C#
69 lines
2.2 KiB
C#
using System;
|
|
|
|
namespace SawCut
|
|
{
|
|
/// <summary>
|
|
/// Provides formatting utilities for displaying measurements and values.
|
|
/// </summary>
|
|
public static class FormatHelper
|
|
{
|
|
/// <summary>
|
|
/// Converts a decimal measurement to a mixed fraction string representation.
|
|
/// </summary>
|
|
/// <param name="input">The decimal value to convert</param>
|
|
/// <param name="precision">The denominator precision (default 16 for 1/16")</param>
|
|
/// <returns>A string in the format "whole-numerator/denominator"</returns>
|
|
public static string ConvertToMixedFraction(decimal input, int precision = 16)
|
|
{
|
|
// Get the whole number part
|
|
int wholeNumber = (int)input;
|
|
|
|
// Get the fractional part
|
|
decimal fractionalPart = Math.Abs(input - wholeNumber);
|
|
|
|
if (fractionalPart == 0)
|
|
{
|
|
return wholeNumber.ToString();
|
|
}
|
|
|
|
// Convert the fractional part to a fraction
|
|
int numerator = (int)(fractionalPart * precision);
|
|
int denominator = precision;
|
|
|
|
// Simplify the fraction
|
|
int gcd = GetGreatestCommonDivisor(numerator, denominator);
|
|
numerator /= gcd;
|
|
denominator /= gcd;
|
|
|
|
// If rounding wiped out the fraction → return whole number only
|
|
if (numerator == 0)
|
|
{
|
|
return wholeNumber.ToString();
|
|
}
|
|
|
|
return $"{wholeNumber}-{numerator}/{denominator}";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts a double measurement to a mixed fraction string representation.
|
|
/// </summary>
|
|
/// <param name="input">The double value to convert</param>
|
|
/// <returns>A string in the format "whole-numerator/denominator"</returns>
|
|
public static string ConvertToMixedFraction(double input)
|
|
{
|
|
return ConvertToMixedFraction((decimal)input);
|
|
}
|
|
|
|
private static int GetGreatestCommonDivisor(int a, int b)
|
|
{
|
|
while (b != 0)
|
|
{
|
|
int temp = b;
|
|
b = a % b;
|
|
a = temp;
|
|
}
|
|
return Math.Abs(a);
|
|
}
|
|
}
|
|
}
|