WIP: Adds more tagged types for rectangular size calculations.

This commit is contained in:
2026-01-29 20:50:33 -05:00
parent 9379774fae
commit 9b618d55fa
9 changed files with 75 additions and 39 deletions

View File

@@ -33,7 +33,7 @@ struct ManualDClientTests {
@Test
func equivalentRectangularDuct() async throws {
let response = try await manualD.rectangularSize(.init(round: 7, height: 8))
let response = try await manualD.rectangularSize(round: 7, height: 8)
#expect(response.height == 8)
#expect(response.width == 5)
}