# Mathober2025_DigraphSink2

# SenseFlow

For my 31st sketch of **Mathober2025** graphed in **MermaidJs,** SenseFlow takes the prompt of ***Digraph Sink*** and uses the Senses as an example as such

## Images

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1761835993409/fdb60ba1-1d47-4755-a795-8ca693624253.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1761836279089/96faa845-c347-4bc8-8c0e-915f3c3f1d7f.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1761835998416/5f9e5bf5-ce7e-4f27-b2b2-dea12ba37be3.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1761836121583/8714e2c5-9161-4e69-b178-b53b726502fa.png align="center")

## Original Graph

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1761836003093/ab59de15-62b6-48de-8a47-417d91d2d958.png align="center")

## Code/Graph

```markdown
stateDiagram-v2
    [Senses] --> [Smell]
    [Senses] --> [Taste]
    [Senses] --> [Sight]
    [Senses] --> [Hearing]
    [Smell] --> [Nose]
    [Perfume] --> [Smell]
    [Performance] --> [Music]
    [Performance] --> [Sight]
    [Hearing] --> [Ears]
    [Music] --> [Ears]
    [Sight] --> [Eyes]
    [Colors] --> [Eyes]
    [Food] --> [Taste]
    [Food] --> [Colors]
    [Water] --> [Taste]
    [Taste] --> [Tongue]
    [Ears] --> [Face]
    [Eyes] --> [Face]
    [Nose] --> [Face]
    [Tongue] --> [Face]
```
