Class: Physical::Box

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

Constant Summary collapse

DEFAULT_LENGTH =
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

#==, #volume

Constructor Details

#initialize(inner_dimensions: [], **args) ⇒ Box

Returns a new instance of Box.



13
14
15
16
17
# File 'lib/physical/box.rb', line 13

def initialize(inner_dimensions: [], **args)
  super args
  @inner_dimensions = fill_dimensions(Types::Dimensions[inner_dimensions])
  @inner_length, @inner_width, @inner_height = *@inner_dimensions
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.



8
9
10
# File 'lib/physical/box.rb', line 8

def inner_dimensions
  @inner_dimensions
end

#inner_heightObject (readonly)

Returns the value of attribute inner_height.



8
9
10
# File 'lib/physical/box.rb', line 8

def inner_height
  @inner_height
end

#inner_lengthObject (readonly)

Returns the value of attribute inner_length.



8
9
10
# File 'lib/physical/box.rb', line 8

def inner_length
  @inner_length
end

#inner_widthObject (readonly)

Returns the value of attribute inner_width.



8
9
10
# File 'lib/physical/box.rb', line 8

def inner_width
  @inner_width
end

Instance Method Details

#inner_volumeObject



19
20
21
22
23
24
# File 'lib/physical/box.rb', line 19

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