class Epuber::Size

Attributes

height[R]

@return [Numeric]

width[R]

@return [Numeric]

Public Class Methods

new(width, height) click to toggle source

@param [Numeric] width @param [Numeric] height

# File lib/epuber/vendor/size.rb, line 15
def initialize(width, height)
  @width = width
  @height = height
end