Sha256: 4d3ac1ba59c6bb16f3ef96255eecf9a4606bb01950888d61bd9b89c1fa7e9be2

Contents?: true

Size: 1 KB

Versions: 9

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: false

# Core SVG data for the trident specification sheet.
#
# This class should never need to be called directly.
# @private
class USPSFlags
  class Core
    module TridentSpecs
      class Short < USPSFlags::Core::TridentSpecs::Base
        include USPSFlags::Core::TridentSpecs::Vertical
        include USPSFlags::Core::TridentSpecs::Horizontal
        include USPSFlags::Core::TridentSpecs::Overlay

        def p
          output('Short', -14, :s) do
            <<~SVG
              #{boundary_box}
              #{right}
              #{left}
              #{bottom}
              #{top}
              #{overlay}
            SVG
          end
        end

      private

        def boundary_box
          <<~SVG
            <!-- Boundary box -->
              <rect x="#{@box_left}" y="#{@box_top}" width="#{@box_right - @box_left}" height="#{BH / 2}" stroke="#666666" stroke-width="#{BF / 600}" stroke-dasharray="15, 15" fill="none" />
          SVG
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
usps_flags-0.6.4 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.6.3 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.6.2 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.6.1 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.6.0 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.5.9 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.5.8 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.5.7 lib/usps_flags/core/trident_specs/short.rb
usps_flags-0.5.6 lib/usps_flags/core/trident_specs/short.rb