# frozen_string_literal: false # SVG building helpers. # # These methods should never need to be called directly, except when designing new flags. # @private class USPSFlags::Helpers::Builders class << self # Displays an overlay grid with regularly spaced locator markers. # # This is useful for adjusting or creating new SVG data generators, but should not otherwise need to be called. # @private def grid(width: USPSFlags::Config::BASE_FLY, height: USPSFlags::Config::BASE_HOIST) <<~SVG SVG end # Displays an overlay indicator of concentric circles and radiating lines. # # This is useful for adjusting or creating new SVG data generators, but should not otherwise need to be called. # @private def locator <<~SVG SVG end end end