TranslateAxes - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// sensorsdriversutils.h

VOID TranslateAxes(
  VEC3D *RotationMatrix,
  ULONG RotationMatrixEntryCount,
  VEC3D *Data,
  ULONG DataCount
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-sensorsdriversutils-translateaxes)

TranslateAxes function

Description

The TranslateAxes function applies the rotation matrix to the given sample.

Parameters

RotationMatrix

Supplies the VEC3D buffer in which the rotation matrix is stored.

RotationMatrixEntryCount

Supplies the number of elements that RotationMatrix holds.

Data

Supplies the VEC3D buffer in which input data is stored and in which the transformed data is returned.

DataCount

Supplies the number of elements that Data holds.

Remarks

The caller is responsible for saving/restoring the floating point context prior to calling this function.

See also