Sha256: 61c9a1306a50e4db30ddc2046b0df56115e1c1708238568b3cbe15c0b67275a5

Contents?: true

Size: 936 Bytes

Versions: 210

Compression:

Stored size: 936 Bytes

Contents

# Copyright (c) 2005 Ruby-GNOME2 Project Team
# This program is licenced under the same licence as Ruby-GNOME2.
#
# $Id: cairo-fill-and-stroke2.rb,v 1.1 2005/10/12 05:38:30 ktou Exp $
=begin
= cairo/Fill And Stroke2

This demo shows how to use GDK and cairo to fill and stroke.
From http://cairographics.org/samples/fill_and_stroke2.html.
=end
require 'common'

module Demo
  class CairoFillAndStroke2 < CairoWindow
    def initialize
      super('cairo fill and stroke2')
    end

    def draw(cr)
      cr.move_to(0.5, 0.1)
      cr.line_to(0.9, 0.9)
      cr.rel_line_to(-0.4, 0.0)
      cr.curve_to(0.2, 0.9, 0.2, 0.5, 0.5, 0.5)
      cr.close_path
      
      cr.move_to(0.25, 0.1)
      cr.rel_line_to(0.2, 0.2)
      cr.rel_line_to(-0.2, 0.2)
      cr.rel_line_to(-0.2, -0.2)
      cr.close_path
      
      cr.set_source_rgba(0, 0, 1)
      cr.fill_preserve
      cr.set_source_rgba(0, 0, 0)
      cr.stroke
    end
  end
end

Version data entries

210 entries across 210 versions & 2 rubygems

Version Path
gtk2-3.4.3 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.4.2 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.4.1 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.4.0 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.9 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.8 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.7 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.6 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.5 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.4 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.3 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.2 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.1 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.3.0 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.9-x64-mingw32 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.9-x86-mingw32 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.9 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.8-x64-mingw32 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.8-x86-mingw32 sample/gtk-demo/cairo-fill-and-stroke2.rb
gtk2-3.2.8 sample/gtk-demo/cairo-fill-and-stroke2.rb