Class: RubySketch::Processing::Touch
- Inherits:
-
Object
- Object
- RubySketch::Processing::Touch
- Defined in:
- lib/rubysketch/processing.rb
Overview
Touch object.
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Identifier of each touch.
-
#x ⇒ Object
readonly
Horizontal position of touch.
-
#y ⇒ Object
readonly
Vertical position of touch.
Instance Attribute Details
#id ⇒ Object (readonly)
Identifier of each touch
713 714 715 |
# File 'lib/rubysketch/processing.rb', line 713 def id @id end |
#x ⇒ Object (readonly)
Horizontal position of touch
717 718 719 |
# File 'lib/rubysketch/processing.rb', line 717 def x @x end |
#y ⇒ Object (readonly)
Vertical position of touch
721 722 723 |
# File 'lib/rubysketch/processing.rb', line 721 def y @y end |