DXRubyの色定数の実装追加を要望
noanoa07 opened this issue · 0 comments
noanoa07 commented
DXRuby のリファレンスマニュアルで定義されている色定数の追加を要望します。
http://dxruby.sourceforge.jp/DXRubyReference/2009713223038250.htm
DXRubyのソースコードから数値は抜き出しましたが、PRまでたどり着けないのでここに書きました。
http://sourceforge.jp/projects/dxruby/scm/svn/blobs/head/branches/1.4.1/dxruby.c
# preset constant color names. [alpha, R, G, B]
# C_DEFAULT is transparent color.
C_BLACK = [255, 0, 0, 0]
C_RED = [255, 255, 0, 0]
C_GREEN = [255, 0, 255, 0]
C_BLUE = [255, 0, 0, 255]
C_YELLOW = [255, 255, 255, 0]
C_CYAN = [255, 0, 255, 255]
C_MAGENTA = [255, 255, 0, 255]
C_WHITE = [255, 255, 255, 255]
C_DEFAULT = [ 0, 0, 0, 0]