Changeset 2008 for libcaca/trunk/ruby/README
- Timestamp:
- Nov 17, 2007, 1:21:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/ruby/README
r2003 r2008 8 8 9 9 - Cucul::Canvas (functions that have a cucul_canvas_t* as first argument) 10 * dither_bitmap is missing as Cucul::Dither is not yet implemented 10 11 - Cucul::Dither (functions that have a cucul_dither_t* as first argument) 11 12 12 13 - Cucul::Font (functions that have a cucul_font_t* as first argument) … … 27 28 "MAGENTA", "DEFAULT", "TRANSPARENT", "BLUE", "LIGHTRED", "DARKGRAY", 28 29 "UNDERLINE", "RED", "WHITE", "BLACK", "LIGHTCYAN", "LIGHTGRAY", 29 "ITALICS", "CYAN", "YELLOW", "LIGHTGREEN", "Canvas", " Font"]30 "ITALICS", "CYAN", "YELLOW", "LIGHTGREEN", "Canvas", "Dither", "Font"] 30 31 \endcode 31 32 … … 54 55 \endcode 55 56 57 \code 56 58 irb(main):004:0> Cucul::Font.methods.sort - 57 59 Cucul::Font.ancestors[1].methods 58 60 => ["list"] 61 \endcode 59 62 63 \code 60 64 irb(main):005:0> Cucul::Font.instance_methods.sort - 61 65 Cucul::Font.ancestors[1].instance_methods 62 66 => ["blocks", "height", "width"] 67 \endcode 68 69 \code 70 irb(main):006:0> Cucul::Dither.instance_methods.sort - 71 Cucul::Dither.ancestors[1].instance_methods => ["brightness=", 72 "contrast=", "gamma=", "palette=", "set_brightness", "set_contrast", 73 "set_gamma", "set_palette"] 74 \endcode 63 75 64 76 And here are sample uses :
Note: See TracChangeset
for help on using the changeset viewer.