ITADN

[Feature Request] Feet unit to display at ft+in

#43OpenVoxelPrismatic 创建于 2025-05-13
V
VoxelPrismaticcommented
Decimal feet are completely useless. ![ResizedImage_2025-05-12_22-22-54_1277.png](https://github.com/user-attachments/assets/1789c186-f39b-423e-b255-1ee476c72f5f) Please display as `6' 2.0157480312` ```go ttl := convertToFeet(input) feet := math.Floor(ttl) inches := (ttl - feet) * 12 return fmt.Sprintf("%d' %f", feet, inches) ```
0 条评论