TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

class BoundedInput in Tinman.AddOns.Application

Translates input events to the configured bounds and takes care of generating events in the correct sequence, as defined by ConsumeInput.

sealed class BoundedInput  

Public / Attributes

Bounds

The bounds to which input events shall be translated.

public property Bounds { get set }
type Box2I
value The target bounds.

See also:

InputEvent.Translate

Public / Constructors

BoundedInput

Creates a new instance of BoundedInput.

public constructor BoundedInput ()

Public / Methods

Pop

Reads the next translated input event.

public method Pop ()
type InputEvent
returns The next translated input event or None if there are no more events.

See also:

Push

Push

Writes an untranslated input event.

public method Push (InputEvent inputEvent)
params inputEvent The untranslated input event.

See also:

Pop