What are Euclidean Nodes?

Carbon-Neutral NFT on Ethereum

Euclidean Nodes is NFT’s on the Ethereum Blockchain. Each of the 512 design has a feature that makes them unique. Each node on the structure is randomly generated by the code and each node connected to the nearest one. Distances between each nodes are calculated by using Euclidean Distances Formula. That’s why every design is different from another.

Each Euclidean node is generated with the previous Euclidean Node hash as its seed value. This means, Euclidean Nodes visuals are generated using a chain of consecutive hash values.

Technical Explanation

d=(x2x1)2+(y2y1)2+(z2z1)2d=\sqrt{(x_{2}-x_{1})^2+(y_{2}-y_{1})^2+(z_{2}-z_{1})^2}

The Euclidean Distance Formula is used to find the distance between two points in Euclidean Space.

The code generates a random number of node points (between 25-545) and these node points are placed randomly on the Euclidean Space.

The code draws a certain ratio of diameter to each of the nodes point in the Euclidean Space. If another node point is inside this diameter, the shortest distance between these two points is calculated using the Euclidean Distance Formula (project name comes from here) and a straight line is drawn.

Last updated