Sha256: ba8a4b2af756dd4802618160a0e182904a16ca11e8ff45bd65a66a22c58e2a6c

Contents?: true

Size: 904 Bytes

Versions: 30

Compression:

Stored size: 904 Bytes

Contents

require 'glimmer-dsl-swt'

include Glimmer

glimmer_logo = File.expand_path('../../icons/scaffold_app.png', __dir__)

shell {
  text 'Hello, Canvas Transform!'
  minimum_size (OS.windows? ? 347 : 330), (OS.windows? ? 372 : 352)
  
  canvas {
    background :white

    image(glimmer_logo, 0, 0) {
      transform {
        translation 110, 110
        rotation 90
        scale 0.21, 0.21
        # also supports inversion, identity, shear, and multiplication {transform properties}
      }
    }
    image(glimmer_logo, 0, 0) {
      transform {
        translation 110, 220
        scale 0.21, 0.21
      }
    }
    image(glimmer_logo, 0, 0) {
      transform {
        translation 220, 220
        rotation 270
        scale 0.21, 0.21
      }
    }
    image(glimmer_logo, 0, 0) {
      transform {
        translation 220, 110
        rotation 180
        scale 0.21, 0.21
      }
    }
  }
}.open

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
glimmer-dsl-swt-4.24.1.0 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.24.0.2 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.24.0.1 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.24.0.0 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.5 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.4 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.3 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.2 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.1 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.1.0 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.0.1 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.23.0.0 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.6 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.5 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.4 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.3 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.2 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.1 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.2.0 samples/hello/hello_canvas_transform.rb
glimmer-dsl-swt-4.22.1.2 samples/hello/hello_canvas_transform.rb