# Genuary2026_MutationBug

# MothicalBeings

**MothicalBeings**  is coded in ***Openscad  & HydraVideoSynth*** which created  mutated bugs `(29th & 30th Prompt of Genuary2026)`

## Poem

```javascript
The Bugs have decided to explore
In Groups, to attempt to witness more
More than they ever could on this planet
As they wanted to feed their mind
New habits
New pivots
New paths to add to their timeline
```

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1769635999399/4f497721-1004-4120-8477-7be82fa48468.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1769636002485/ffc95a4e-ad52-447d-a905-1d2af2c36201.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1769636005461/c233675b-104a-4082-8b03-3c6226196ceb.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1769636013457/c4d80698-a781-4e63-b32f-5cacc54830ec.png align="center")

## Code

### OpenSCAD

```javascript
// triangle
points = [[0,0], [10,0], [5,10]];
points2 = [[0,0], [17,31], [15,10]];
points3 = [[0,0], [-17,31], [-15,10]];

// Wedge Transformed 1
color("red",0.75)
translate([-10,-10,0])
rotate([50,150,70])
linear_extrude(height = 30,twist = 43, slices = 3,scale = 2.5)
  polygon(points);
  
// Wedge Transformed 2
color("red",0.75)
translate([-10,-110,0])
rotate([250,150,70])
linear_extrude(height = 30,twist = 43, slices = 3,scale = 2.5)
  polygon(points);


//Normal Wedge 1
color("red",0.75)
rotate([50,50,170])
linear_extrude(height = 30,scale = 2.5)
  polygon(points);
  
//Normal Wedge 4
color("red",0.75)
rotate([-50,50,170])
linear_extrude(height = 30,scale = 4.5)
  polygon(points);
  
//Normal Wedge 6
color("red",0.275)
rotate([-50,-150,-170])
linear_extrude(height = 30,scale = 14.5)
  polygon(points);

//Wedge Transformed 2
color("orange",0.75)
rotate([250,250,170])
linear_extrude(height = 30,twist = 90,slices = 3,scale = 5.5)
  polygon(points2);
  
  
//Wedge Transformed 3
color("orange",0.175)
rotate([250,250,170])
linear_extrude(height = 30,twist = 90,slices = 3,scale = 9.5)
  polygon(points2);

//Normal Wedge 2  
color("orange",0.375)
linear_extrude(height = 30,scale = 2.5)
  polygon(points2);
  
//Normal Wedge 3 
color("orange",0.1375)
linear_extrude(height = 52,scale = 4.1)
  polygon(points2);
  
  
//Normal Wedge 4  
color("orange",0.75)
linear_extrude(height = 45,scale = 2.5)
  polygon(points2);

//Wedge3 Transformed
color("blue",0.75)
linear_extrude(height = 30,twist= 120, slices = 43,scale = 2.5)
  polygon(points3);

// Normal Wedge 5
color("blue",0.75)
linear_extrude(height = 30,slices = 3, scale = 4.5)
  polygon(points3);
  
  
  // Normal Wedge 6
color("blue",0.1475)
linear_extrude(height = 30,slices = 3, scale = 6.5)
  polygon(points3);
```

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).scale(1.24).modulate(s0).modulateRotate(src(s0)).colorama([0.3,0.5,0.7]).out()
```

```javascript


s0.initScreen()

src(s0).scale(1.24).modulate(s0).modulateRotate(src(s0),0.4).colorama(0.9).out()
```
