<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -27,6 +27,7 @@ module Prawn
     #
     #   pdf.move_to [100,50]
     #   pdf.move_to(100,50)
+    #
     def move_to(*point)
       x,y = translate(point)           
       add_content(&quot;%.3f %.3f m&quot; % [ x, y ])
@@ -75,6 +76,8 @@ module Prawn
       add_content(&quot;#{width} w&quot;)
     end
 
+    # The current line thickness
+    #
     def line_width
       @line_width || 1
     end
@@ -96,14 +99,22 @@ module Prawn
       line_to(x1, y1)
     end   
 
+    # Draws a horizontal line from &lt;tt&gt;x1&lt;/tt&gt; to &lt;tt&gt;x2&lt;/tt&gt; at the
+    # current &lt;tt&gt;y&lt;/tt&gt; position.
+    #
     def horizontal_line(x1,x2)
       line(x1,y,x2,y)
     end
 
+    # Draws a horizontal line from the left border to the right border of the
+    # bounding box at the current &lt;tt&gt;y&lt;/tt&gt; position.
+    #
     def horizontal_rule
       horizontal_line(bounds.absolute_left, bounds.absolute_right)
     end
 
+    # Draws a vertical line at the given x position from y1 to y2.
+    # 
     def vertical_line_at(x,y1,y2)
       line(x,y1,x,y2)
     end
@@ -199,11 +210,13 @@ module Prawn
     end
     
     # Strokes and closes the current path.
+    #
     def stroke
       add_content &quot;S&quot;
     end              
     
     # Fills, strokes, and closes the current path.
+    #
     def fill 
       add_content &quot;b&quot; 
     end     
@@ -212,6 +225,7 @@ module Prawn
     #
     #    stroke_some_method(*args) #=&gt; some_method(*args); stroke
     #    fill_some_method(*args) #=&gt; some_method(*args); fill
+    #
     def method_missing(id,*args,&amp;block)
       case(id.to_s) 
       when /^stroke_(.*)/</diff>
      <filename>lib/prawn/graphics.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>81bf90f6cd86ecdaa25879f2973c255d4188793c</id>
    </parent>
  </parents>
  <author>
    <name>Gregory Brown</name>
    <email>gregory.t.brown@gmail.com</email>
  </author>
  <url>http://github.com/sandal/prawn/commit/451da0ab5ef7501b52e0d32bb80235fdefb43449</url>
  <id>451da0ab5ef7501b52e0d32bb80235fdefb43449</id>
  <committed-date>2008-06-26T16:27:42-07:00</committed-date>
  <authored-date>2008-06-26T16:27:42-07:00</authored-date>
  <message>Grapics API docs [#26]</message>
  <tree>22338333fc79c8b32fa3a2fdd74c541acfe2da4c</tree>
  <committer>
    <name>Gregory Brown</name>
    <email>gregory.t.brown@gmail.com</email>
  </committer>
</commit>
