diff --git a/index.xhtml b/index.xhtml index 1231f21..6d51fed 100644 --- a/index.xhtml +++ b/index.xhtml @@ -16,12 +16,33 @@ OpenSCAD is an open-source computer-aided design (CAD) software application.

- Unlike many other CAD software applications which use a GUI to create, edit, and manipulate objects, OpenSCADCAD software applications which use a GUI to create, edit, and manipulate objects, OpenSCAD creates, edits, and manipulates objects via a scripting programming-language. For example:


 cube([2,3,4]);
+
+
+

+ OpenSCAD scripts are usually stored in .scad files. +

+

+ OpenSCAD includes many features similar to many imperative programming-languages; including: +

+ +

+ For those already familiar with programming-languages such as C, C++, C#, D, Dart, Go, Java, JavaScript, PHP, and others — OpenSCAD uses curly-brackets. + For example: +

+
+

+for (a =[x1,x2,x3]){echo(a);}