sepandhaghighi / cennznet-nft

Cennznet NFT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CENNZnet NFT


Overview

CENNZnet Generative Art Bounty

In this work I tried to generate unique complex geometric shapes based on random points, different formulas, different colors and also different projections!! The position of every single point is calculated by a formula, which has random parameters. Because of the random numbers, every image looks different.

Arts

1

  • x : random.uniform(-1,1) * x**2 - random.uniform(-1,1) * math.sin(y**2)
  • y : random.uniform(-1,1) * y**3 - random.uniform(-1,1) * math.cos(x**2)
  • seed : 16081
  • projection : Polar

2

  • x : random.uniform(-1,1) * x**2 - 2*x*math.sin(y**2)
  • y : random.uniform(-1,1) * y**3 - math.cos(x**2)
  • seed : 19644
  • projection : Polar

3

  • x : random.uniform(-1,1) * x**2 - math.sin(y**3) + abs(y-2*x)
  • y : random.uniform(-1,1) * y**3 - math.cos(x**2)
  • seed : 43111
  • projection : Rectilinear

4

  • x : random.uniform(-1,1) * x**2 - math.sin(y**3) + abs(y-2*x)
  • y : random.uniform(-1,1) * y**3 + math.sin(x-y**2)
  • seed : 48614
  • projection : Polar

5

  • x : random.uniform(-1,1) * y**3 + math.cos(2*y)
  • y : random.uniform(-1,1) * math.cos(abs(y-x))**2
  • seed : 19974
  • projection : Rectilinear

6

  • x : random.uniform(-1,1) * math.log10(abs(x))
  • y : random.uniform(-1,1) * y**3 + math.sin(x**2)
  • seed : 823
  • projection : Polar

7

  • x : random.uniform(-1,1) * math.sin(y**2) + math.cos(x**2) + math.sin(2*x + y)
  • y : random.uniform(-1,1) * y**3 + math.sin(x**2)
  • seed : 1125
  • projection : Polar

8

  • x : random.uniform(-1,1) * math.sin(y**2) + math.cos(x**2) + math.sin(2*x + y)
  • y : random.uniform(-1,1) * math.sin(x**3) + math.cos(2*y - x)
  • seed : 973
  • projection : Hamer

9

  • x : random.uniform(-1,1) * math.sqrt((x + y)**2) + math.floor(x - y)
  • y : random.uniform(-1,1) * math.sqrt(abs(x-y)) ** 3 + math.ceil(x + y)
  • seed : 1083
  • projection : Rectilinear

10

  • x : random.uniform(-1,1) * math.sqrt((x + y)**2) + math.floor(x - y)
  • y : random.uniform(-1,1) * math.sqrt(abs(x-y)) ** 3 + math.ceil(x + y)
  • seed : 324
  • projection : Polar

About

Cennznet NFT


Languages

Language:Python 100.0%