Sha256: 2b4176efd9ea4d3603f983d994aaaf5d51bb1aedb15c142d58bf5bf8284cb423
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Physical class Package extend Forwardable attr_reader :container, :items, :void_fill_density, :id def initialize(id: nil, container: nil, items: [], void_fill_density: Measured::Weight(0, :g), dimensions: nil, weight: nil, properties: {}) @id = id || SecureRandom.uuid @void_fill_density = Types::Weight[void_fill_density] @container = container || Physical::Box.new(dimensions: dimensions || [], weight: weight || Measured::Weight(0, :g), properties: properties) @items = Set[*items] end delegate [:dimensions, :width, :length, :height, :depth, :x, :y, :z, :properties] => :container def <<(item) @items.add(item) end def >>(item) @items.delete(item) end def weight container.weight + items.map(&:weight).reduce(Measured::Weight(0, :g), &:+) + void_fill_weight end def remaining_volume container.inner_volume - items.map(&:volume).reduce(Measured::Volume(0, :ml), &:+) end def void_fill_weight return Measured::Weight(0, :g) if container.volume.value.infinite? Measured::Weight(void_fill_density.value * remaining_volume.value, void_fill_density.unit) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
physical-0.2.0 | lib/physical/package.rb |