Method Normalize
Normalize(NativeSlice<float3>, NativeArray<float3>)
Normalizes all features of an encoding.
Declaration
public void Normalize(NativeSlice<float3> destination, NativeArray<float3> features)
Parameters
| Type | Name | Description |
|---|---|---|
| NativeSlice<float3> | destination | Destination array that will contain the normalized features. |
| NativeArray<float3> | features | Source array that the features are read from. |
Remarks
Encodings contain fragments which represent either poses or trajectories. Fragments in turn store features that have been normalized subject to their respective domain (positions and velocities will be normalized differently).
See Also
Normalize(NativeArray<float3>)
Normalizes all features of an encoding.
Declaration
public void Normalize(NativeArray<float3> fragment)
Parameters
| Type | Name | Description |
|---|---|---|
| NativeArray<float3> | fragment | Feature array that should be normalized. |