Jump to content

OpenSCAD Tutorial

100% developed
From Wikibooks, open books for an open world
Racing car model
Racing car model
// 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]
[edit | edit source]