Class: Geometry::CenteredRectangle
- Defined in:
- lib/geometry/rectangle.rb
Instance Attribute Summary collapse
-
#center ⇒ Point
The Rectangle‘s center.
- #size ⇒ Size
Attributes inherited from Rectangle
Accessors collapse
-
#edges ⇒ Array<Edge>
The Rectangle‘s four edges.
- #height ⇒ Object
-
#max ⇒ Point
The upper right corner of the bounding Rectangle.
-
#min ⇒ Point
The lower left corner of the bounding Rectangle.
-
#points ⇒ Array<Point>
The Rectangle‘s four points (clockwise).
- #width ⇒ Object
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean (also: #==)
-
#initialize(*args) ⇒ CenteredRectangle
constructor
A new instance of CenteredRectangle.
Methods inherited from Rectangle
Methods included from ClusterFactory
Constructor Details
#new(width, height) ⇒ CenteredRectangle #new(size) ⇒ CenteredRectangle #new(center, size) ⇒ CenteredRectangle
Returns a new instance of CenteredRectangle.
195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/geometry/rectangle.rb', line 195 def initialize(*args) , args = args.partition {|a| a.is_a? Hash} = .reduce({}, :merge) @center = [:center] ? Point[[:center]] : PointZero.new if .has_key?(:size) @size = Geometry::Size[[:size]] elsif .has_key?(:height) and .has_key?(:width) @size = Geometry::Size[[:width], [:height]] else raise ArgumentError, "Bad arguments to CenteredRectangle#new" end end |
Instance Attribute Details
Instance Method Details
#edges ⇒ Array<Edge>
Returns The Rectangle‘s four edges.
217 218 219 220 221 222 223 224 225 226 |
# File 'lib/geometry/rectangle.rb', line 217 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: ==
210 211 212 |
# File 'lib/geometry/rectangle.rb', line 210 def eql?(other) (self.center == other.center) && (self.size == other.size) end |
#height ⇒ Object
247 248 249 |
# File 'lib/geometry/rectangle.rb', line 247 def height @size.height end |
#max ⇒ Point
Returns The upper right corner of the bounding Rectangle.
229 230 231 |
# File 'lib/geometry/rectangle.rb', line 229 def max @center + @size/2.0 end |
#min ⇒ Point
Returns The lower left corner of the bounding Rectangle.
234 235 236 |
# File 'lib/geometry/rectangle.rb', line 234 def min @center - @size/2.0 end |
#points ⇒ Array<Point>
Returns The Rectangle‘s four points (clockwise).
239 240 241 242 243 244 245 |
# File 'lib/geometry/rectangle.rb', line 239 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 |
#width ⇒ Object
251 252 253 |
# File 'lib/geometry/rectangle.rb', line 251 def width @size.width end |