Class: Geometry::CenteredRectangle

Inherits:
Rectangle
  • Object
show all
Defined in:
lib/geometry/rectangle.rb

Instance Attribute Summary collapse

Attributes inherited from Rectangle

#origin

Accessors collapse

Instance Method Summary collapse

Methods inherited from Rectangle

#bounds, #inset, #minmax, new

Methods included from ClusterFactory

included

Constructor Details

#new(width, height) ⇒ CenteredRectangle #new(size) ⇒ CenteredRectangle #new(center, size) ⇒ CenteredRectangle

Returns a new instance of CenteredRectangle.

Overloads:



230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/geometry/rectangle.rb', line 230

def initialize(*args)
    options, args = args.partition {|a| a.is_a? Hash}
    options = options.reduce({}, :merge)

    @center = options[:center] ? Point[options[:center]] : PointZero.new

    if options.has_key?(:size)
	@size = Geometry::Size[options[:size]]
    elsif options.has_key?(:height) and options.has_key?(:width)
	@size = Geometry::Size[options[:width], options[:height]]
    else
	raise ArgumentError, "Bad arguments to CenteredRectangle#new"
    end
end

Instance Attribute Details

#centerPoint

Returns The Rectangle‘s center.

Returns:



213
214
215
# File 'lib/geometry/rectangle.rb', line 213

def center
  @center
end

#sizeSize

Returns The Size of the Rectangle.

Returns:



215
216
217
# File 'lib/geometry/rectangle.rb', line 215

def size
  @size
end

Instance Method Details

#edgesArray<Edge>

Returns The Rectangle‘s four edges.

Returns:



252
253
254
255
256
257
258
259
260
261
# File 'lib/geometry/rectangle.rb', line 252

def edges
    point0 = @center - @size/2.0
    point2 = @center + @size/2.0
    point1 = Point[point0.x,point2.y]
    point3 = Point[point2.x, point0.y]
    [Edge.new(point0, point1),
    Edge.new(point1, point2),
    Edge.new(point2, point3),
    Edge.new(point3, point0)]
end

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


245
246
247
# File 'lib/geometry/rectangle.rb', line 245

def eql?(other)
    (self.center == other.center) && (self.size == other.size)
end

#heightObject



282
283
284
# File 'lib/geometry/rectangle.rb', line 282

def height
    @size.height
end

#maxPoint

Returns The upper right corner of the bounding Rectangle.

Returns:



264
265
266
# File 'lib/geometry/rectangle.rb', line 264

def max
    @center + @size/2.0
end

#minPoint

Returns The lower left corner of the bounding Rectangle.

Returns:



269
270
271
# File 'lib/geometry/rectangle.rb', line 269

def min
    @center - @size/2.0
end

#pointsArray<Point>

Returns The Rectangle‘s four points (clockwise).

Returns:



274
275
276
277
278
279
280
# File 'lib/geometry/rectangle.rb', line 274

def points
    point0 = @center - @size/2.0
    point2 = @center + @size/2.0
    point1 = Point[point0.x,point2.y]
    point3 = Point[point2.x, point0.y]
    [point0, point1, point2, point3]
end

#widthObject



286
287
288
# File 'lib/geometry/rectangle.rb', line 286

def width
    @size.width
end