Absolute positioning: a one-to-one relation between device and display space
Aliases: absolute coordinates · absolute mapping · direct mapping
What it is
Absolute positioning maps one location on an input surface to one location in display space. A touch contact or stylus tip and its corresponding screen point form a stable coordinate relation: the device reports “I am here,” not merely how far it moved.
Why it happens
A fixed mapping lets people predict the result directly from hand location, without first checking where a cursor sits. It may scale or transform coordinates and still be absolute if the same input location reliably reaches the same display location.
That mapping's gain — the ratio of display size to active-surface size — is fixed and cannot be adjusted with movement speed the way relative devices adjust it. That is the structural difference between absolute and relative positioning, and the source of its trade-off. Gain below one (a surface larger than the display, typical of professional graphics tablets) means a small hand displacement yields an even smaller screen displacement — higher precision, but a longer physical reach to cover the whole display. Gain above one (a small surface mapped to a large display, as with a compact touch panel driving a projection wall) lets the hand reach the full screen without much travel, but scales up the same finger or stylus-tip positioning error onto the display. Change the ratio between surface and display size on the same class of device, and "more precise" versus "easier to reach" flips.
Where it stops holding
Absolute need not mean physical one-to-one size: a tablet can be smaller than its display and edge correction can distort a touch panel, and neither breaks absolute positioning. What does break the expectation of "here" is calibration drift, parallax, screen rotation, multiple displays, or the hand occluding the target itself.
Absolute mappings built on camera or external tracking (a tracked stylus, a projected interactive wall) carry an extra fragility: the input surface and the display surface are two physically separate objects, so any change in their relative position — a bumped projector, a momentary tracking loss — invalidates the whole mapping, and users usually have no way to tell it has failed; they only feel clicks drifting off with no obvious cause. Reaching across a large display also remains physically costly regardless of calibration.
Applying it
- Keep one input surface stably paired with a visible workspace; update mapping and cues together, with no gap between them, when orientation or scale changes.
- Provide calibration checks and edge-reach tests, and size the minimum clickable target to the error actually produced after finger or stylus-tip error is scaled by the mapping, not to an idealised coordinate.
- Test a grid of points across the screen, reporting centre, corner, and edge error and retry rates separately — check corners especially hard when gain is above one, since that is where absolute error gets magnified most.
- Give externally tracked absolute mappings a repeatable recalibration trigger, and surface a visible warning when the mapping may have failed, rather than leaving people to guess through repeated retries.
Related
- Same group: C1.02.2 Relative positioning: transmitting displacement increments rather than position · C1.02.3 Absolute positioning removes visual search for the cursor · C1.02.4 Relative positioning permits clutching beyond physical bounds · C1.02.5 Touchscreens are absolute; trackpads are relative
- Nearby: C1.01 Types and properties of pointing devices · C1.03 Control-display gain
- Search terms:
absolute positioning·coordinate mapping·calibration