hash
Generates a list of hashed points based on the shape's triangulation.
Return
A list of vectors representing the hashed points.
Parameters
The number of points to generate in the hashed result.
The seed value used for randomization in the hashing process.
An additional parameter used in the hashing process to modify randomization.
Generates a hash-based 2D vector based on the provided seed, input value, and range constraints.
Parameters
An integer used to initialize the hash generation process, providing variability in the result.
The input value used as the basis for generating the hash values.
The minimum bounds for both components of the resulting vector. Defaults to -ONE.
The maximum bounds for both components of the resulting vector. Defaults to ONE.
Generates a 2D hash-based vector using specified seed, input value, and range bounds.
Parameters
An integer seed value for initializing the hash generation.
The numerical input value used for generating the hash.
The minimum value bound for both vector components. Defaults to -1.0.
The maximum value bound for both vector components. Defaults to 1.0.