Skip to content
forked from JustinSDK/dotSCAD

Reduce the burden of mathematics when playing OpenSCAD

License

LGPL-3.0, Unknown licenses found

Licenses found

LGPL-3.0
LICENSE
Unknown
LICENSE.svg
Notifications You must be signed in to change notification settings

chill1n/dotSCAD

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotSCAD 2.3

Reduce the burden of mathematics when playing OpenSCAD.

dotSCAD

license/LGPL

Introduction

Based on OpenSCAD 2019.05.

OpenSCAD uses three library locations, the installation library, built-in library, and user defined libraries. It's convenient to set OPENSCADPATH. Check Setting OPENSCADPATH in OpenSCAD User Manual/Libraries for details.

Every module or function is located in the file which has the same name as the module or the function. For example, if you want to use the line2d module to draw a line, use <line2d.scad>; first.

use <line2d.scad>;

line2d(p1 = [0, 0], p2 = [5, 0], width = 1);

Some module files are organized in a directory. For example, px_circle.scad exists in pixel directory. You have to prefix the directory name when including px_circle.

use <pixel/px_circle.scad>;

points = px_circle(radius = 10);
for(pt = points) {
    translate(pt) square(1);
}

Examples

See examples.

examples

Documentation

2D Module

3D Module

Transformation

2D Function

2D/3D Function

Path

Extrusion

2D Shape

2D Shape Extrusion

Util

Matrix

Point Transformation


Turtle

Pixel

Part

Surface

Noise


2.4 Preview

2D Function

Util

Turtle

Voxel (Renamed from Pixel. Yes, Pixel will be deprecated in the next release.)

Matrix

Voronoi


Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

About dotSCAD

I've been using OpenSCAD for years. Some of my works include reusable implementations so I elaborate them into this library.

The idea of the name dotSCAD comes from the filename extension ".scad" of OpenSCAD.

About

Reduce the burden of mathematics when playing OpenSCAD

Resources

License

LGPL-3.0, Unknown licenses found

Licenses found

LGPL-3.0
LICENSE
Unknown
LICENSE.svg

Stars

Watchers

Forks

Packages

No packages published

Languages

  • OpenSCAD 100.0%