switch permutation type to ubyte

This commit is contained in:
2024-09-09 04:11:26 +10:00
parent 493790bd64
commit b6085c8f1c
4 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@ public protocol CoherentNoiseRandomInit: CoherentNoise {
}
public protocol CoherentNoiseTableInit: CoherentNoise {
init(permutation: [Int16])
init(permutation: [UInt8])
}
public protocol CoherentNoise2D: CoherentNoise {