Class: Physical::Box

Inherits:
Cuboid show all
Defined in:
lib/physical/box.rb

Constant Summary collapse

DEFAULT_LENGTH =
BigDecimal::INFINITY
DEFAULT_MAX_WEIGHT =
BigDecimal::INFINITY

Instance Attribute Summary collapse

Attributes inherited from Cuboid

#dimensions, #height, #id, #length, #properties, #weight, #width

Instance Method Summary collapse

Methods inherited from Cuboid

#==, #density, #volume

Constructor Details

#initialize(inner_dimensions: [], max_weight: Measured::Weight(DEFAULT_MAX_WEIGHT, :g), **args) ⇒ Box

Returns a new instance of Box.



16
17
18
19
20
21
# File 'lib/physical/box.rb', line 16

def initialize(inner_dimensions: [], max_weight: Measured::Weight(DEFAULT_MAX_WEIGHT, :g), **args)
  super args
  @inner_dimensions = fill_dimensions(Types::Dimensions[inner_dimensions])
  @inner_length, @inner_width, @inner_height = *@inner_dimensions
  @max_weight = Types::Weight[max_weight]
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Physical::Cuboid

Instance Attribute Details

#inner_dimensionsObject (readonly)

Returns the value of attribute inner_dimensions.



10
11
12
# File 'lib/physical/box.rb', line 10

def inner_dimensions
  @inner_dimensions
end

#inner_heightObject (readonly)

Returns the value of attribute inner_height.



10
11
12
# File 'lib/physical/box.rb', line 10

def inner_height
  @inner_height
end

#inner_lengthObject (readonly)

Returns the value of attribute inner_length.



10
11
12
# File 'lib/physical/box.rb', line 10

def inner_length
  @inner_length
end

#inner_widthObject (readonly)

Returns the value of attribute inner_width.



10
11
12
# File 'lib/physical/box.rb', line 10

def inner_width
  @inner_width
end

#max_weightObject (readonly)

Returns the value of attribute max_weight.



10
11
12
# File 'lib/physical/box.rb', line 10

def max_weight
  @max_weight
end

Instance Method Details

#inner_volumeObject



23
24
25
26
27
28
# File 'lib/physical/box.rb', line 23

def inner_volume
  Measured::Volume(
    inner_dimensions.map { |d| d.convert_to(:cm).value }.reduce(1, &:*),
    :ml
  )
end