Headless stateless 3D clay modeller. Text-first. No GUI. No viewport. No mouse required.
Project description
DwarvenModeller
Headless, stateless 3D clay modeller. Part of the DwarvenSuite.
Text-first. No GUI. No viewport. No mouse required. The blind human artist and the Claude AI instance use the same interface. Accessibility is not a feature -- it is the architecture.
Philosophy
- Digital clay, not CAD -- think in shapes and relationships, not vertices and edge loops
- Stateless -- every operation is a single command; no persistent process, no session state
- Text-first -- all feedback is readable by screen readers, AI instances, and humans equally
- Headless -- runs anywhere: terminal, cron, AI tool calls, CI pipelines
What it does
Model in 3D using plain text operations. Each --op transforms the scene and saves.
--feedback tells you where everything is in human spatial language.
Export to POV-Ray, PNG, SVG, OBJ, STL, glTF, and more.
Installation
pip install dwarvenmodeller
Or from source:
git clone https://github.com/gitdwarf/DwarvenModeller.git
cd DwarvenModeller
pip install -e .
Requires Python 3.10+. POV-Ray is optional (for photorealistic renders).
Quick start
# Create a new scene
dwarvenmodeller --new mysculpt
# Add shapes
dwarvenmodeller --file mysculpt.dms --op "add type=sphere id=head radius=10"
dwarvenmodeller --file mysculpt.dms --op "add type=cube id=body width=6 height=8 depth=5 fill=coral"
# Check what you have
dwarvenmodeller --file mysculpt.dms --feedback
# Move things
dwarvenmodeller --file mysculpt.dms --op "move target=body down=5"
# Export
dwarvenmodeller --file mysculpt.dms --export "format=png out=mysculpt.png"
# Load a sample scene
dwarvenmodeller --file aldric --feedback
Sample scenes
Installed to ~/.dwarvenmodeller/samples/ on first run:
aldric.dms-- 30-object face sculpture, all primitive types demonstratedbench.dms-- calibration scene, all 6 cardinal directions labelledbox3.dms-- DwarvenArchive icon: open box with documentsbenchmark.dms-- export regression testing scene
Operations
dwarvenmodeller --help-ops
Shapes
sphere cube cylinder cone capsule torus plane
icosahedron tetrahedron octahedron dodecahedron text null
Exports
png png_native povray svg obj stl glb gltf x3d braille spatial txt
Python API
import dwarvenmodeller as dm
scene = dm.Scene.load('mysculpt.dms')
dm.op_add(scene, {'type': 'sphere', 'id': 'head', 'radius': '10'})
print(dm.generate_feedback(scene, tty=False))
dm.export_png_native(scene, 'preview.png', size=512)
scene.save('mysculpt.dms')
Part of DwarvenSuite
All tools follow the same philosophy: small, fast, correct, as few dependencies as possible.
Author
thedwarf -- gitdwarf
Support / Tip Jar
If you find DwarvenModeller useful, you can support the project:
Licence
Individual use: free. Use it, sell what you make with it, no payment needed.
Business/entity use: USD $1,000 one-time fee. Any company, LLC, sole trader, or other legal entity must purchase a commercial licence. Pay via PayPal: https://www.paypal.com/paypalme/gitdwarf
Questions: https://github.com/gitdwarf/DwarvenModeller/issues
Run dwarvenmodeller --license for full terms.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dwarvenmodeller-0.3.0.tar.gz.
File metadata
- Download URL: dwarvenmodeller-0.3.0.tar.gz
- Upload date:
- Size: 85.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d6082f1b9c768712d46e21d559288bc9fb7028b6df01df9a4304f6a43a16286
|
|
| MD5 |
eb3ceb08a4ee1a7a7976cb9f951aa073
|
|
| BLAKE2b-256 |
5982d81490515f4aa771e15d1ebc2dcaf5e0ef58c1d43f6700327f6de6376b4c
|
File details
Details for the file dwarvenmodeller-0.3.0-py3-none-any.whl.
File metadata
- Download URL: dwarvenmodeller-0.3.0-py3-none-any.whl
- Upload date:
- Size: 91.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e674d61800357660847e77805fc6d04b5994904a3f9bc4673357ed175c6e210c
|
|
| MD5 |
719168aa636b38fe799bf7155b094c26
|
|
| BLAKE2b-256 |
5e58341528f82eee2afe7da5a114f022c672059c1306d77e034ed270e634f93d
|