OpenSCAD Tutorial
Appearance

// O'lchamlar (mm)
length = 1000; // X width = 1000; // Y height = 1500; // Z thickness = 5; // Devor qalinligi
difference() {
// Tashqi korpus cube([length, width, height], center = false);
// Ichki bo'shliq
translate([thickness, thickness, thickness])
cube([
length - 2*thickness,
width - 2*thickness,
height - thickness
], center = false);}
Table of Contents
[edit | edit source]- Introduction
- Chapter 1
- A few words about OpenSCAD
- Getting started with the Tutorial
- Basic information about the OpenSCAD environment
- Creating your first object
- Creating a slightly different cube
- Adding more objects and translating objects
- The cylinder primitive and rotating objects
- Completing your first model
- Creating a second model
Useful links
[edit | edit source]- OpenSCAD's website
- Download OpenSCAD
- Syntax cheat sheet
- The OpenSCAD Language Manual for use later as a reference.