This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Advanced Window Snap | |
| * Snaps the active window to a position within a user-defined grid. | |
| * | |
| * @author Andrew Moore <andrew+github@awmoore.com> | |
| * @contributor jballi | |
| * @contributor park-brian | |
| * @contributor shinywong | |
| * @version 1.2 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // simple heart shape for OpenSCAD | |
| // author: Mindon <mindon@gmail.com> | |
| // from https://mindon.github.io/ | |
| heart(width = 160, height = 160); | |
| module heart(width, height = 0) { // 0 = auto height | |
| w = width; h = height; | |
| r = 2 * w/7; // top circle radius | |
| i = r/4.0; // top circle intersect-part width |