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
$fn=30; | |
function calcScale(scaleFactors, count, iteration) = | |
scaleFactors[0] + | |
(( scaleFactors[1]-scaleFactors[0]))*iteration/count; | |
module hullSweep(steps, rotation, offsetTo, scaleFactors) | |
{ | |
for ( i= [0:steps-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
DETAIL=120; | |
module hullBetween() | |
{ | |
// Combine the hull between and the original objects | |
difference() | |
{ | |
hull() | |
{ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> | |
<meta name="description" content="Background Generator V1.2"> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
a.export, a.export:visited { | |
text-decoration: none; |
NewerOlder