惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
NASSCAD V4.2 — A full CAD modeler that lives in a single ...
Nasser · 2026-05-15 · via DEV Community

What if your entire CAD environment was one .htm file you could double-click, drop on a USB drive, or host on a static server — no install, no cloud account, no subscription?
That's NASSCAD. And version 4.2 is a serious piece of engineering.

TL;DR — Full Boolean CSG, 14 watertight primitives, non-destructive history tree, BVH raycasting, a 2 GB geometry arena with mark-and-sweep GC, STL / OBJ / 3MF import-export, M2–M20 fastener library, a JS scripting console. Zero runtime CDN fetches. Works completely offline. Free for non-commercial use (CC BY-NC 4.0).

The premise
Most browser-based CAD tools lean on CDNs, backends, or cloud rendering pipelines. NASSCAD goes the opposite direction: every dependency — Three.js r128, the Manifold WASM CSG engine, fonts, all geometry modules — is either bundled inline or base64-encoded and decoded at runtime via atob(). The manifold.wasm binary lives inside the HTML itself, patched to a self-contained IIFE so it works over file:// with no server.
This is not a toy viewer. It's a full parametric modeler with Boolean operations, a construction tree, undo/redo, multi-format export, scripting, and a 2 GB memory arena.

Core architecture
ModuleRoleThree.js r128WebGL rendering, custom OrbitControls with spherical damping, dual resolution (64 segs display / 128 export)Manifold WASMC++ CSG engine in a Web Worker. N-ary union in a single call. Epsilon vertex merge before handoffGeometryPool512 MB–2 GB binary arena. Bump allocator + free-list reuse + mark-and-sweep GC + XOR checksumBVH RaycasterAABB world-space cache per mesh. Pre-filter before triangle traversal. Fast at 10M+ verticesIndexedDBNamed project persistence, quota display, restore on reload. CSG tree serialized with each saveNassScriptFull JS console with direct access to the NASSCAD internal API. Ctrl+Enter to run, history navigation

The CSG engine — how it actually works
Boolean operations go through a carefully layered pipeline:

Auto hole detection — mix a solid and a hole object in a selection, NASSCAD forces subtract automatically. No manual mode switching needed.
N-ary union — one single Manifold WASM call for N objects, not an O(n²) pairwise loop.
Vertex merge — epsilon 1e-5 quantization before geometry is sent to Manifold. Prevents degenerate triangles from sneaking through.
Post-process pipeline — BFS island normal smoothing (Blender algorithm, crease 30°), area-weighted center-of-gravity recentering, immediate re-render.
Async yield — geometry preparation yields every 10 objects via setTimeout(0). The watchdog timer fires between heavy phases; the UI never hard-freezes.

14 watertight primitives
Every generator uses a shared V() vertex pool (a Map keyed at PREC=1e5) to deduplicate coincident vertices at construction time. The output is an indexed, fully closed mesh that Manifold accepts without repair:

Cylind.Gen — truncated cylinder, double chamfer or round, top and bottom independently configurable, N facets
Cubic.Gen — chamfered/rounded cube, spherical slerp per edge, 1–24 segments
Tore.Gen — ultra-HD torus, periodic topology (i+1)%N · (j+1)%M, zero seam
Pipe.Gen — hollow bent pipe via Bishop-frame parallel transport (zero section twist), outer + inner wall + sealed caps
Gear.Gen — ISO 20° involute gears (spur, helical, herringbone), V-groove pulleys, timing belt pulleys
Standard cube, sphere, cylinder, cone, 3D text (Helvetiker, configurable extrusion + bevel)
M2–M20 fastener library (NUTS_AND_BOLTS.js, CC BY-NC 4.0)

Non-destructive CSG tree
Every Boolean operation records a construction tree snapshot: Union(A, Subtract(B, C))… — recursively, N levels deep. What this enables:

Modify source objects, hit Re-run — NASSCAD reconstructs from the snapshot and re-executes the full CSG chain. No manual redo.
The tree survives Save/Load (serialized into the .json project file via IndexedDB) and Undo/Redo (included in every scene snapshot).
View the tree at any time: Union(A, Subtract(B, C)) displayed recursively in the properties panel.

Performance envelope
ScopeThresholdStatusThree.js rendering< 3M vertices, < 500 objects✅ smoothThree.js rendering3–8M vertices⚠️ fps dropManifold CSG< 10k triangles/object✅ < 1 secManifold CSG10k–50k triangles⚠️ 1–10 secManifold CSG> 50k triangles🔴 risk freezeGeometryPool< 150 complex objects✅ safeGeometryPool> 300 objects or massive CSG🔴 red MEM gauge

Practical tip: for thread-heavy assemblies, place objects without CSG and let the slicer (Cura, PrusaSlicer, Bambu Studio) handle final assembly. STL export at 128 segments is more than sufficient for FDM at 0.4 mm nozzle resolution.

Export / Import
FormatNotesSTL BinaryNative slicer format, Z-up, 4–5× smaller than ASCII. Quality: 128 / 256 / 512 segmentsSTL ASCIILegacy tool compatibilityOBJWavefront with vn normals, compatible with Blender and FreeCAD3MFNative Bambu Studio / PrusaSlicer / Cura, per-object colors, multi-object, clean ZIPImport STL/OBJ/3MFAuto centering, placed on floor grid, Y↔Z axis conversion, per-object colors on 3MF

Why it matters
The dominant CAD platforms are locked into desktop installs, subscription models, or cloud dependencies. NASSCAD makes a different bet: if you can fit a serious CSG modeler, a watertight primitive library, a construction history, and a 2 GB memory arena into a single HTML file that opens offline — then distribution, maintenance, and access cost approach zero.
It's a maker's tool built by a maker who uses it in the field. The design decisions (offline-first, file-portable, no CDN) aren't theoretical — they come from the friction of working in environments where internet access and software licenses aren't guaranteed.

Authors
Nasser — Architect & Field Tester
CLIT · Electronics Technician · 3D Maker, France
Vision, direction, critical bug identification (CSG sizing, manifold edge cases, worker stability), quality standards, technology pivots.
Claude Sonnet 4.6 — Developer
Artificial Intelligence · Anthropic
Web Worker Manifold WASM · Watertight primitives · Manifold geometries verified edge by edge · Surgical patches · Systematic node --check.

Try it → nasscad.com — open it, no install, no account. Works offline. Free for non-commercial use under CC BY-NC 4.0.