Sha256: 6a0a6d597ff6e27f3c4b1dfcb419e0283e44fc288f44ab253ffc940fa1cedc37
Contents?: true
Size: 927 Bytes
Versions: 13
Compression:
Stored size: 927 Bytes
Contents
#!/usr/bin/env ruby -w require 'rmagick' imgl = Magick::ImageList.new imgl.new_image(390, 140, Magick::HatchFill.new('white','lightcyan2')) gc = Magick::Draw.new # Draw Bezier curve gc.stroke('red') gc.stroke_width(2) gc.fill_opacity(0) gc.bezier(20,120, 20,20, 320, 20, 320,120) # Draw circles around endpoints gc.fill_opacity(0) gc.stroke('gray50').stroke_width(1) gc.circle(20,120, 23, 123) gc.circle(320,120, 323, 123) # Draw filled circles around control points gc.line(20,120, 20,20) gc.line(320,120, 320,20) gc.fill_opacity(1) gc.fill('gray50') gc.circle(20,20, 23,23) gc.circle(320,20, 323,23) # Annotate gc.font_weight(Magick::NormalWeight) gc.font_style(Magick::NormalStyle) gc.fill('black') gc.stroke('transparent') gc.text(27,120, "'20,120'") gc.text(27,20, "'20,20'") gc.text(327,120, "'320,120'") gc.text(327,20, "'320,20'") gc.draw(imgl) imgl.border!(1, 1, 'lightcyan2') imgl.write('cbezier1.gif') exit(0)
Version data entries
13 entries across 13 versions & 3 rubygems