diff options
| author | Marius Kintel <marius@kintel.net> | 2011-09-02 23:50:29 (GMT) | 
|---|---|---|
| committer | Marius Kintel <marius@kintel.net> | 2011-09-02 23:50:29 (GMT) | 
| commit | 4afdde51f45de5f35040b44680d306103888cdc9 (patch) | |
| tree | 865debc0287db43a4901cf001cbdddb7dc5d36d1 /testdata/scad/features | |
| parent | 3bd03237391c5bf13271d48adfe0357f8873fbb2 (diff) | |
Added test for named color without alpha
Diffstat (limited to 'testdata/scad/features')
| -rw-r--r-- | testdata/scad/features/color-tests.scad | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/testdata/scad/features/color-tests.scad b/testdata/scad/features/color-tests.scad index a87dad3..67d65d0 100644 --- a/testdata/scad/features/color-tests.scad +++ b/testdata/scad/features/color-tests.scad @@ -2,7 +2,7 @@ module object() cube([10,10,10]);  translate([12,12,0]) object();  color([1,0,0]) translate([24,12,0]) object(); -translate([0,12,0]) color([0,1,1]) object(); +translate([0,12,0]) color("Purple") object();  color([0,0,1,0.5]) object();  translate([12,0,0]) color([0,0,1],0.5) object();  translate([24,0,0]) color(c="Green",alpha=0.2) object(); | 
