Sha256: 7346354520d9454484e0435c0583e1903dba60d9a55f7e83b61a72eed5222c46

Contents?: true

Size: 497 Bytes

Versions: 1

Compression:

Stored size: 497 Bytes

Contents

#!/usr/bin/env ruby
# Copyright (C) 2004-2007 Kouichirou Eto, All rights reserved.

require "sgl/cocoa"

def setup
  $windowBorder = 0
  $windowShadow = 0
  window 700, 700
  backgroundHSV 66, 100, 20, 100
end

def display
  x, y = mouseX, mouseY
  colorHSV 0, 50, 100
  backgroundHSV 66, 100, 20, y/7
  lineWidth 3
  line   0,   0, x, y
  line 700,   0, x, y
  line   0, 700, x, y
  line 700, 700, x, y
  colorHSV 0, 100, 100
  rect x-10, y-10, x+10, y+10
end

mainloop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sgl-1.0.0 examples/cocoa10-transparent.rb