feat: unified 0 and 90 degree PDF envelope and category descriptors

This commit is contained in:
2026-07-08 19:52:34 +00:00
commit 9fece3f174
170 changed files with 27177 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { getWallCpeOfficial } from './app/src/lib/coefficients';
const cpe0 = getWallCpeOfficial(30, 15, 6, 0);
console.log("0 deg:", cpe0);
const cpe90 = getWallCpeOfficial(30, 15, 6, 90);
console.log("90 deg:", cpe90);