Added test for named color without alpha

stl_dim
Marius Kintel 2011-09-03 01:50:29 +02:00
parent 3bd0323739
commit 4afdde51f4
1 changed files with 1 additions and 1 deletions

View File

@ -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();