Parametric Design,
Powered by AI

Welcome to the AHM Labs OpenSCAD sandbox. Browse custom-designed, parametric 3D models generated through AI workflows. Preview models directly in your browser, and purchase source code or STLs instantly.

AI-Assisted Design

Models are conceptualized and refined using advanced AI, ensuring unique, complex, and highly functional geometric structures.

Live 3D Previews

Our custom backend rendering engine compiles OpenSCAD on the fly, supplying beautiful, interactive 3D model previews straight to your browser.

Instant Micro-Purchases

Love a model? Instantly unlock access to download the raw `.scad` parameters and the ready-to-print `.stl` files via a simple Ko-Fi micro-transaction.

What is OpenSCAD?

OpenSCAD is a free software application for creating solid 3D computer-aided design (CAD) objects. Unlike interactive modelers (like Blender or AutoCAD), it is a 3D compiler that reads a script file describing the object and renders the 3D model from it. This gives the designer full control over the modeling process and enables easily turning parameters into functional model properties.

Learn about our OpenFFM Project

AI for Mathematics & Complexity

We utilize advanced AI to rapidly solve complex geometric constraints and write programmatic formulas that would otherwise take hours of manual trial-and-error.

  • Algorithmic generation of interlocking parts and tight tolerances.
  • Dynamic variable calculation for perfectly scaling components.
  • Automated debugging of mathematical logic inside `.scad` files.

Featured Models

A curated selection of our most popular parametric designs.

View All Library
Coming Soon

Unlimited Access to the
Live Editor

Why settle for static shapes when you can generate infinite variations? Our impending Live Editor subscription grants you priority access to the cloud computation engine. Tweak source code directly in your browser and compile tailored STLs on demand.

  • Unlimited compilations for all available models.
  • Access to hidden premium `.scad` variants.
  • Stateless, secure sessions processed entirely via Ko-fi.

No database tracking. Magic-link access.

ahmlabs/live-editor
1module parametric_gear() {
2  teeth = 24;
3  pitch_radius = 45.2;
4
5  linear_extrude(height = 10) {
6    for (i = [0 : 360/teeth : 359]) {
7      // Cloud compiler rendering geometry in real-time...
8      rotate([0, 0, i]) translate([0, pitch_radius, 0])
9        gear_tooth_profile();
10    }
11  }
12}
|
0%