Sha256: e7cb8edfe107167f0a4298cc7bcef4724f89a6979aaf8ba663a3561b53671705

Contents?: true

Size: 1.2 KB

Versions: 15

Compression:

Stored size: 1.2 KB

Contents

require 'rvg/rvg'

rvg = Magick::RVG.new(400, 150) do |canvas|
    canvas.background_fill = 'white'
    canvas.desc = 'Example NewCoordSys - New user coordinate system'
    canvas.g.styles(:fill=>'none', :stroke=>'black', :stroke_width=>3) do |grp|
        # Draw the axes of the original coordinate system
        grp.line(0, 1.5, 400, 1.5)
        grp.line(1.5, 0, 1.5, 150)
    end

    canvas.g do |grp|
        grp.text(30, 30, 'ABC (orig coord system)').styles(:font_size=>20, :font_family=>'Verdana', :font_weight=>'normal', :font_style=>'normal')
    end

    # Establish a new coordinate system, which is
    # shifted (i.e., translated) from the initial coordinate
    # system by 50 user units along each axis.
    canvas.g.translate(50, 50) do |grp|
        grp.g.styles(:fill=>'none', :stroke=>'red', :stroke_width=>3) do |grp2|
            # Draw lines of length 50 user units along
            # the axes of the new coordinate system
            grp2.line(0, 0, 50, 0)
            grp2.line(0, 0, 0, 50)
        end
        grp.text(30, 30, 'ABC (translated coord system)').styles(:font_size=>20, :font_family=>'Verdana', :font_weight=>'normal', :font_style=>'normal')
    end

end

rvg.draw.write('NewCoordSys.gif')

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
rmagick-2.13.4 doc/ex/NewCoordSys.rb
rmagick-2.13.3 doc/ex/NewCoordSys.rb
rmagick-2.13.3.rc1 doc/ex/NewCoordSys.rb
rmagick-2.13.2 doc/ex/NewCoordSys.rb
rdp-rmagick-0.0.0 doc/ex/NewCoordSys.rb
rmagick-2.13.1 doc/ex/NewCoordSys.rb
rmagick-2.12.2 doc/ex/NewCoordSys.rb
rmagick-2.12.1 doc/ex/NewCoordSys.rb
rmagick-2.12.0 doc/ex/NewCoordSys.rb
rmagick-2.11.1 doc/ex/NewCoordSys.rb
rmagick-2.10.0 doc/ex/NewCoordSys.rb
rmagick-2.11.0 doc/ex/NewCoordSys.rb
rmagick-2.9.0 doc/ex/NewCoordSys.rb
rmagick-2.9.1 doc/ex/NewCoordSys.rb
rmagick-2.9.2 doc/ex/NewCoordSys.rb