Git Product home page Git Product logo

randoma's Issues

`color` returns the same first colors for majority of seeds

I'm making this issue as I'm not too sure what to actually do about this - it feels like a bug, but at the same time I know that b/c it's generating a color that's also pleasing and psudorandom the pool of possible colors is greatly reduced :/

Anyway, the distribution of random colors is such that the range of possible colors returned for the first color of a seed is greatly reduced lower than further calls to color:

const tColors = (seeds: number, times: number) => {
  const colors = [];

  for (let seed = 0; seed < seeds; seed++) {
    const gen = new Randoma({ seed });

    for (let i = 0; i < times; i++) {
      gen.color();
    }

    colors.push(gen.color());
  }

  return colors.map(color => color.hex());
};

const stats = () => {
  const results = [];

  for (let i = 0; i < 10; i++) {
    results.push(new Set(tColors(100000, i)).size);
  }

  console.log(results.join('\n'));
};

stats();

Give me:

58
726
627
726
726
726
726
726
726
726

Also, the max number of colors generatable seems to be 726.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.