transform property

Matrix4? transform
final

The transformation used to transform this event from the global coordinate space into the coordinate space of the event receiver.

This value affects what is returned by localPosition and localDelta. If this value is null, it is treated as the identity transformation.

Unlike a paint transform, this transform usually does not contain any "perspective" components, meaning that the third row and the third column of the matrix should be equal to "0, 0, 1, 0". This ensures that localPosition describes the point in the local coordinate system of the event receiver at which the user is actually touching the screen.

See also:

  • transformed, which transforms this event into a different coordinate space.

Implementation

final Matrix4? transform;