<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -12,7 +12,38 @@ in turn be used for proximity-based clustering of the input points.
 
 == Usage:
 
-TODO
+require 'lib/ruby_vor'
+require 'pp'
+
+points = [
+  RubyVor::Point.new(120, 290),
+  RubyVor::Point.new(110, 120),
+  RubyVor::Point.new(160, 90.2),
+  RubyVor::Point.new(3.14159265, 3.14159265)
+]
+
+# Compute the diagram &amp; triangulation
+comp = RubyVor::VDDT::Computation.from_points(points)
+
+puts &quot;The nearest-neighbor graph:&quot;
+pp comp.nn_graph
+
+puts &quot;\nThe minimum-spanning tree:&quot;
+pp comp.minimum_spanning_tree
+
+#
+# Visualize these things as SVGs
+#
+
+# Just the triangulation
+RubyVor::Visualizer.make_svg(comp, :name =&gt; 'tri.svg')
+
+# Just the MST
+RubyVor::Visualizer.make_svg(comp, :name =&gt; 'mst.svg', :triangulation =&gt; false, :mst =&gt; true)
+
+# Voronoi diagram and the triangulation
+RubyVor::Visualizer.make_svg(comp, :name =&gt; 'dia.svg', :voronoi_diagram =&gt; true)
+
 
 == LICENSE:
 </diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e36622e956039209d99411e5876fe318c78fbcc4</id>
    </parent>
  </parents>
  <author>
    <name>Brendan Ribera</name>
    <email>brendan.ribera@gmail.com</email>
  </author>
  <url>http://github.com/abscondment/rubyvor/commit/32da3ee0fe48259625bec0f205a4e76c7bfcc6ce</url>
  <id>32da3ee0fe48259625bec0f205a4e76c7bfcc6ce</id>
  <committed-date>2008-12-23T16:23:23-08:00</committed-date>
  <authored-date>2008-12-23T16:23:23-08:00</authored-date>
  <message>Usage</message>
  <tree>dfb52c24b6f307a80b98e565f088f21c2a5d8517</tree>
  <committer>
    <name>Brendan Ribera</name>
    <email>brendan.ribera@gmail.com</email>
  </committer>
</commit>
