# Mathober2025_Chi

# MoreOrLessChi

For my 20th sketch of **Mathober2025** coded in #**Openscad**, **MoreOrLessChi** takes the 9th prompt of ***“Chi”*** and uses color dots for an attempted representation of the potential Chromatic Numbers (which is usually symbolized by the Chi symbol) in the figure/graph.

## Poetry

```ocaml
Was the chromatic number right?
Or do the guesses need to be more tight?
```

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1760503294447/c13b9a52-a05e-4152-bc5c-d03e009e1bd0.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1760503299315/330e3dd9-8e7b-482e-ad18-f7fd3b766b98.png align="center")

## Code

```cpp
// An Assortment of Points
points = [[-7,-7],[-14,-14],[0,0], [10,0], [5,10],[9,12],[-7,15],[10,-14],[14,9]];

// Collective Shape
color("orange",0.75)
translate([-10,-10,0])
rotate([50,50,70])
linear_extrude(height = 30,twist = 73, slices = 2,scale = 2.5)
 polygon(points);
```
