diff options
Diffstat (limited to 'qtruby')
-rw-r--r-- | qtruby/AUTHORS | 2 | ||||
-rw-r--r-- | qtruby/INSTALL | 2 | ||||
-rw-r--r-- | qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/qtruby/AUTHORS b/qtruby/AUTHORS index f7c0c985..3b98da28 100644 --- a/qtruby/AUTHORS +++ b/qtruby/AUTHORS @@ -43,7 +43,7 @@ QtRuby is a ruby version of the PerlQt/Smoke project, written by: Germain Garand David Faure -Etquipment +Equipment 800 Mhz iBook with Yellow Dog 3.0, Macally Micro 3 button mouse Books diff --git a/qtruby/INSTALL b/qtruby/INSTALL index 570c0045..f2b39996 100644 --- a/qtruby/INSTALL +++ b/qtruby/INSTALL @@ -119,7 +119,7 @@ Info.plist is <key>CFBundleExecutable</key> <string>Shoot</string> <key>CFBundleIdentifier</key> - <string>jp.co.ryutaro.qttquit</string> + <string>jp.co.ryutaro.qtquit</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> diff --git a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb index ba50f364..931167b0 100644 --- a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb +++ b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb @@ -32,7 +32,7 @@ class Graphics # Defines counter-clockwise points used in OpenGL TRIANGLE_STRIP to # create a circle on the X/Z plane. Don't include center point here; # It is added when outputting the circle. - STQUARE = [ + SQUARE = [ XPLUS, ZMINUS, XMINUS, ZPLUS, XPLUS ] @@ -225,7 +225,7 @@ class Graphics def Graphics.circle(iterations = DEFAULT_SPHERE_ITERATIONS, counterClockwise = true) if @@circles[iterations].nil? - @@circles[iterations] = buildCircle(iterations, STQUARE) + @@circles[iterations] = buildCircle(iterations, SQUARE) end circle = @@circles[iterations] |