|
|
|
|
|
by pacaro
408 days ago
|
|
There are so many ways to produce sierpinski gaskets. It you specify n points and the pick a new point at random, then iteratively randomly select (uniformly) one of the original n points and move the next point to the mid point of the current point and the selected point. Coloring those points generates a sierpinski triangle or tetrahedron or whatever the n-1 dimensional triangle is called |
|
The same as in the simplex algorithm to solve linear programming problems.