Class HaltonSequence
An utility class to compute samples on the Halton sequence. https://en.wikipedia.org/wiki/Halton_sequence
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
public static class HaltonSequence
Methods
Get(int, int)
Gets a deterministic sample in the Halton sequence.
Declaration
public static float Get(int index, int radix)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index in the sequence. |
int | radix | The radix of the sequence. |
Returns
Type | Description |
---|---|
float | A sample from the Halton sequence. |