Open lmxyy opened 2 years ago
Just change
x = x0 * a[i].sqrt() + e * (1.0 - a[i]).sqrt()
to
if i > 0: x = x0 * a[i - 1].sqrt() + e * (1.0 - a[i - 1]).sqrt() else: x = x0
Otherwise, the generated images have some small dots.
Just change
to
Otherwise, the generated images have some small dots.