Sha256: 93a9f8e9265a827a1974d32ad18fb883ec87a37abe801a8920eb7551573405bf

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

# Core SVG data for the pennants.
#
# This class should never need to be called directly.
# @private
class USPSFlags::Core::Pennant
  def initialize(type: :cruise)
    @type = type.to_s.upcase
    @fly = USPSFlags::Config::BASE_FLY
    @hoist = USPSFlags::Config::BASE_HOIST/4
  end

  def svg
    if @type == "OIC"
      svg = oic
    elsif @type == "CRUISE"
      svg << <<~SVG
        #{cruise}
        <g transform=\"translate(385, 340)\">
          #{USPSFlags::Core::Star.new.svg}
        </g>"
      SVG
    end
  end

  def oic
    <<~SVG
      <polyline fill="#{USPSFlags::Config::BLUE}" points="0 0 #{USPSFlags::Config::BASE_FLY} #{USPSFlags::Config::BASE_HOIST/8} 0 #{USPSFlags::Config::BASE_HOIST/4}" />
    SVG
  end

  def cruise
    <<~SVG
      <path d="M 0 0
        l #{@fly*10/36} #{@hoist*5/36}
        l 0 #{@hoist*26/36}
        l -#{@fly*10/36} #{@hoist*5/36}
      " fill="#{USPSFlags::Config::RED}" />
      <path d="M #{@fly*10/36} #{@hoist*5/36}
        l #{@fly*11/36} #{@hoist*5.5/36}
        l 0 #{@hoist*15/36}
        l -#{@fly*11/36} #{@hoist*5.5/36}
      " fill="#FFFFFF" />
      <path d="M #{@fly*21/36} #{@hoist*10.5/36}
        l #{@fly*15/36} #{@hoist*7.5/36}
        l -#{@fly*15/36} #{@hoist*7.5/36}
      " fill="#{USPSFlags::Config::BLUE}" />
      <path d="M 0 0
        l #{@fly} #{@hoist/2}
        l -#{@fly} #{@hoist/2}
      " fill="none" stroke="#000000" stroke-width="2" />
    SVG
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
usps_flags-0.3.3 lib/usps_flags/core/pennant.rb