茂之钳
cf38d76fd0
feat(v4.6): memory pool + parallel boolean/MC/intersection + GMP exact predicates
...
CI / Build & Test (push) Failing after 16m56s
CI / Release Build (push) Failing after 24s
Build & Test / build-and-test (push) Has been cancelled
Build & Test / python-bindings (push) Has been cancelled
M1 — Memory Pool (内存池):
- ObjectPool<T>: O(1) acquire/release with free-list, chunk-based expansion
- ThreadSafeObjectPool<T>: per-thread local pools with global fallback
- CowPtr<T>: copy-on-write smart pointer with shallow/deep copy
- 10 tests: single/multi-thread, CoW detach, reuse rate
M2 — Parallel Boolean (并行布尔):
- parallel_face_face_intersection(): OpenMP face-pair dispatch with AABB culling
- parallel_classify_faces(): thread-safe ray casting classification
- parallel_mesh_union/intersection/difference + B-Rep variants
- Thread count management API
- 12 tests: coverage, empty cases, identity operations
M3 — Parallel Marching Cubes (并行MC):
- parallel_marching_cubes(): Z-slice parallel voxel processing
- parallel_adaptive_mc(): octree-based adaptive resolution
- Complete 256-entry edge table + Möller-Trumbore interpolation
- 5 tests: sphere basic/high-res/empty/adaptive/threaded
M4 — Parallel Surface Intersection (并行求交):
- parallel_curve_intersections(): per-pair parallel dispatch
- parallel_surface_intersection(): recursive subdivision + Newton refinement
- AABB broad-phase culling before narrow-phase
- 4 tests: curve pairs, surface batch
M5 — GMP Exact Predicates (精确谓词):
- exact_orient2d/3d: adaptive precision (double → GMP fallback)
- exact_in_sphere: circumsphere test with degenerate handling
- exact_point_in_polygon/polyhedron: robust ray casting
- PrecisionMode: Fast/Adaptive/Exact with global toggle
- 12 tests: all orientations, boundary cases, mode switching
21 files, +2263 lines
2026-07-26 17:28:15 +08:00
茂之钳
4f049b1296
fix: compilation + test fixes — 26/42 failures resolved
...
CI / Build & Test (push) Failing after 44s
CI / Release Build (push) Failing after 45s
Build & Test / build-and-test (push) Has been cancelled
Build & Test / python-bindings (push) Has been cancelled
- CAM offset: fix knot collision in fit_clamped/make_circle → NaN
- Face split: fix add_face returning global ID instead of index → SEGFAULT
- Volume: fix formula to use abs-per-face for orientation robustness
- Build: fix vde_mesh linking, add vde_collision to vde_brep deps
- Tests: fix surface_intersection test, fuzz CMake, face split expectations
- Rename test_constraint_solver → test_constraint_solver_3d (naming conflict)
- Various include/namespace fixes across test files
2026-07-25 00:02:48 +00:00
茂之钳
00a71c4573
feat(v3.4): CAM toolpath — contour + pocket + G-code
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 31s
Build & Test / build-and-test (push) Has been cancelled
Build & Test / python-bindings (push) Has been cancelled
2026-07-24 13:23:02 +00:00
茂之钳
d818d0729e
fix: 修复 7 个编译/测试问题 — 100% 测试通过
...
CI / Build & Test (push) Failing after 35s
CI / Release Build (push) Failing after 43s
- exact_predicates: 匿名namespace泄漏导致orient_2d符号不可见
- mesh_quality: 纵横比公式归一化到[0,1], 1=等边三角形
- r_tree: insert/remove自赋值导致STR rebuild后数据丢失
- test_distance: PointToLine测试点在线上的错误断言
- test_smooth: 边界值断言从_LT改为_LE
- test_quality: 归一化纵横比的期望值调整
2026-07-23 13:45:33 +00:00
茂之钳
f2203c7255
feat: 测试覆盖扩展 + 文档更新
2026-07-23 12:36:39 +00:00
ViewDesignEngine
f174fd5101
fix: 测试全部通过 25/25 — Point/GJK/Boolean 修复
...
CI / Build & Test (push) Failing after 27s
CI / Release Build (push) Failing after 1m35s
- Point: Eigen 不零初始化,使用 Zero()
- GJK: 球体 lambda 返回类型统一为 Point3D
- Boolean: 不相交场景适配当前 S-H 算法
2026-07-23 08:39:36 +00:00
ViewDesignEngine
02d0520aa5
v0.1.0: 初始工程骨架 — 7模块 40头文件 32源文件 17文档 Apache-2.0
2026-07-23 05:27:51 +00:00