# MinaCoding2025_Bed

# **LolliPopBuild**

For ***MinaCoding2025*** Prompt 26: Coded in **Bed, *LollipopBuild*** coded in **OpenScad & HydraVideoSynth** shows the formation of a new Lollipop build

## Poem

```ocaml
Lollipoppers , being mere creatures
Have mutated
To enhance their features
As their movements have been translated
For these mutations that have been Created
```

## Video

%[https://youtu.be/P66dmg_qv8s] 

## Code

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).repeat(3,3).colorama().scale(0.5).blend(src(s0).repeat(2,2).
colorama([0.1,0.3,0.5,0.1,0.2,0.3].smooth())).blend(src(s0).colorama(()=> (time % 10 + 1)/11)).out()

speed = 0.3

```

### OpenSCAD

```javascript
union(){
//top    
translate([0,35,95]) color("orange",1.0) sphere(22);
translate([0,35,55]) color([0.15, 0.25, 0.47]) sphere(22);

    
//teal section
translate([0,55,75]) color("teal",1.0) sphere(22);   
translate([0,35,75]) color("white",1.0) sphere(22);
translate([0,15,75]) color("teal",1.0) sphere(22);
  
 //eyes
 translate([20,45,75]) color("black",1.0) sphere(10);   
 translate([20,25,75]) color("black",1.0) sphere(10); 

translate([27,25,75]) color("gold",1.0) sphere(5);
translate([27,45,75]) color("gold",1.0) sphere(5);      
    
//cylinder    
translate([5,35,-35]) color([0.25,0.75,0.93]) cylinder(h = 125, r = 9);

}
```
