Class: CGPoint

Inherits:
Struct
  • Object
show all
Defined in:
lib/mouse.rb,
lib/mouse.rb,
lib/mouse.rb

Overview

A structure that contains a point in a two-dimensional coordinate system

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x = 0.0, y = 0.0) ⇒ CGPoint

Returns a new instance of CGPoint.

Parameters:

  • x (Number) (defaults to: 0.0)
  • y (Number) (defaults to: 0.0)


26
27
28
# File 'lib/mouse.rb', line 26

def initialize x = 0.0, y = 0.0
  super x.to_f, y.to_f
end

Instance Attribute Details

#xNumber

The x co-ordinate of the screen point

Returns:

  • (Number)


21
22
23
# File 'lib/mouse.rb', line 21

def x
  @x
end

#yNumber

The y co-ordinate of the screen point

Returns:

  • (Number)


21
22
23
# File 'lib/mouse.rb', line 21

def y
  @y
end

Instance Method Details

#inspectString

Return a nice string representation of the point

Overrides Object#inspect to more closely mimic MacRuby Boxed#inspect.

Returns:

  • (String)


44
45
46
# File 'lib/mouse.rb', line 44

def inspect
  "#<CGPoint x=#{self.x.to_f} y=#{self.y.to_f}>"
end

#to_pointCGPoint

Returns the receiver, since the receiver is already a CGPoint

Returns:



57
58
59
# File 'lib/mouse.rb', line 57

def to_point
  self
end