Method InverseNormalize
InverseNormalize(NativeSlice<float3>, NativeArray<float3>)
Inverse normalizes all features of an encoding.
Declaration
public void InverseNormalize(NativeSlice<float3> destination, NativeArray<float3> features)
Parameters
Type | Name | Description |
---|---|---|
NativeSlice<float3> | destination | Destination array that will contain the inverse 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
InverseNormalize(NativeArray<float3>)
Inverse normalizes all features of an encoding.
Declaration
public void InverseNormalize(NativeArray<float3> fragment)
Parameters
Type | Name | Description |
---|---|---|
NativeArray<float3> | fragment | Feature array that should be inverse normalized. |