Sha256: 453b013424d645558277de67b824a5a0b2994c99f25eb684ab121104751e0c84
Contents?: true
Size: 439 Bytes
Versions: 1
Compression:
Stored size: 439 Bytes
Contents
#!/usr/bin/env ruby # Copyright (C) 2004-2007 Kouichirou Eto, All rights reserved. require "sgl/cocoa" def setup $windowShadow = 0 window 700, 700 backgroundHSV 66, 100, 20 $image = image("../media/image-heart.psd") end def display x, y = mouseX, mouseY colorHSV 0, 50, 100, y/5 backgroundHSV 66, 100, 20, 300-x/2 $image.rect(100, 100, 200, 200) $image.rect(0, 0, x, y) $image.rect(x, y, x+100, y+100) end mainloop
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sgl-0.4.0 | examples/cocoa5-image.rb |