Noise
BufferedAlphaNoise
Create a buffer of alpha noise generator. Alpha can be in [0, 2].
Source code in cmtj/noise/__init__.pyi
3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
fillBuffer()
Fill the buffer with the noise. This method is called only once.
Source code in cmtj/noise/__init__.pyi
9 10 11 |
|
tick()
Produce the next sample of the noise.
Source code in cmtj/noise/__init__.pyi
12 13 14 |
|
VectorAlphaNoise
Create a vector alpha noise generator. Alpha can be in [0, 2].
Source code in cmtj/noise/__init__.pyi
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
getPrevSample()
Get the previous sample of the noise in a vector form.
Source code in cmtj/noise/__init__.pyi
28 29 30 |
|
getScale()
Get the scale of the noise.
Source code in cmtj/noise/__init__.pyi
31 32 33 |
|
tickVector()
Get the next sample of the noise in a vector form.
Source code in cmtj/noise/__init__.pyi
35 36 37 |
|