Sha256: f327dc122769f636d4f624781d441e63004013c17d44ee4cbb257a7cfa2c6b90
Contents?: true
Size: 509 Bytes
Versions: 10
Compression:
Stored size: 509 Bytes
Contents
class Prawn::SVG::State attr_accessor :text, :preserve_space, :fill_opacity, :stroke_opacity, :stroke_width, :computed_properties, :viewport_sizing, :inside_use, :inside_clip_path def initialize @stroke_width = 1 @fill_opacity = 1 @stroke_opacity = 1 @computed_properties = Prawn::SVG::Properties.new.load_default_stylesheet end def initialize_dup(other) @computed_properties = @computed_properties.dup end def disable_drawing inside_clip_path end end
Version data entries
10 entries across 10 versions & 1 rubygems