Make harmonic perlin avaible as a base noise for pca
This commit is contained in:
parent
bb9a76a07a
commit
daf8ac8bec
@ -50,11 +50,12 @@ class Avaible_Noise_Funcs(Enum):
|
|||||||
PINK = 1
|
PINK = 1
|
||||||
COLOR = 2
|
COLOR = 2
|
||||||
PERLIN = 3
|
PERLIN = 3
|
||||||
SDE = 4
|
HARMONIC_PERLIN = 4
|
||||||
|
SDE = 5
|
||||||
|
|
||||||
def get_func(self):
|
def get_func(self):
|
||||||
# stil aaaaaaaa
|
# stil aaaaaaaa
|
||||||
return [noise.White_Noise, noise.Pink_Noise, noise.Colored_Noise, noise.Perlin_Noise, noise.SDE_Noise][self.value]
|
return [noise.White_Noise, noise.Pink_Noise, noise.Colored_Noise, noise.Perlin_Noise, noise.Harmonic_Perlin_Noise, noise.SDE_Noise][self.value]
|
||||||
|
|
||||||
|
|
||||||
def cast_to_enum(inp, Class):
|
def cast_to_enum(inp, Class):
|
||||||
|
Loading…
Reference in New Issue
Block a user