# Genuary2026_Perfect

## *3DTriplets*

For the 14th Prompt of **Genuary2026: Perfectly Fitted**, *3DTriplet* is coded in a ***LiveCodeLab*** Sketch(With Extra Effects) in sets that works for the “perfect” number that is 6(1 Red Cube, 2 Orange Cylinders and 3 Blue Spheres).

*“In number theory, a perfect number is a positive integer that is equal to the sum of its positive proper divisors, that is, divisors excluding the number itself. For instance, 6 has proper divisors 1, 2 and 3, and 1 + 2 + 3 = 6, so 6 is a perfect number” -* Wikipedia

## Poetry

```javascript


Shaking and Flipping
Tilting and twisting
Spinning and Tipping
Over and Under,
As they wander,
Into a whole new listing
```

## Video

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

## LiveCodeLab Code

```javascript
pushMatrix()
ambientLight white
red
stroke red
rotate
move sin(time)/3,sin(time)/2,sin(time)/3
box
popMatrix()

pushMatrix()
scale sin(time) /2
ambientLight 
fill orange
stroke orange
2 times with i
	move 
	peg
popMatrix()

pushMatrix()
ambientLight aqua
3 times with i
	fill blue
	stroke blue
	move sin(time)/3
	box
popMatrix()
```
