Boost logo

Boost-Commit :

From: pbristow_at_[hidden]
Date: 2008-01-15 14:07:30


Author: pbristow
Date: 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
New Revision: 42792
URL: http://svn.boost.org/trac/boost/changeset/42792

Log:
Numerous fixes and expansion to allow ticks to be left or right, top of bottom through ticks_on_plot_window_on_
Text files modified:
   sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp | 125 ++
   sandbox/SOC/2007/visualization/boost/svg_plot/svg.hpp | 11
   sandbox/SOC/2007/visualization/boost/svg_plot/svg_2d_plot.hpp | 184 +++-
   sandbox/SOC/2007/visualization/boost/svg_plot/svg_style.hpp | 25
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/index.html | 64 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/acknowledgements.html | 23
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior.html | 25
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_limits.html | 49
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_stylesheets.html | 69 +-
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/color.html | 64 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/howtouse.html | 56 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface.html | 39
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_1d_plot_interface.html | 1217 ++++++++++++++++++++++++++----------
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_2d_plot_interface.html | 1296 ++++++++++++++++++++++++++++++---------
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_boxplot_interface.html | 959 ++++++++++++++++++++++-------
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_interface.html | 910 ++++++++++++++++++++-------
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults.html | 32
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/1d_defaults.html | 560 +++++++++++++----
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/2d_defaults.html | 618 ++++++++++++++----
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial.html | 33
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html | 66 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/todo.html | 25
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple.html | 36
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_simple_code_example.html | 46
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_special.html | 61 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/full_2d_layout.html | 32
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple.html | 35
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/1d_special.html | 46
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/full_1d_layout.html | 32
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/tutorial_code_1d_example.html | 46
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_stylesheet.html | 35
   31 files changed, 4927 insertions(+), 1892 deletions(-)

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -139,8 +139,8 @@
           } // use_x_minor_grid
 
           double x_tick_length = derived().x_ticks_.minor_tick_length_;
- if(derived().x_ticks_.ticks_on_plot_window_on_)
- { // Put minor ticks on the plot window border.
+ if (derived().x_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Put minor ticks on the plot window border bottom.
             y1 = derived().plot_bottom_; // on the window line.
             y2 = derived().plot_bottom_; // y1 = upper, y2 = lower end of tick.
             if(derived().x_ticks_.up_ticks_on_)
@@ -152,6 +152,19 @@
               y2 += x_tick_length; // down.
             }
           }
+ else if (derived().x_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Put minor ticks on the plot window border top.
+ y1 = derived().plot_top_; // on the window line.
+ y2 = derived().plot_top_; // y1 = upper, y2 = lower end of tick.
+ if(derived().x_ticks_.up_ticks_on_)
+ { //
+ y1 -= x_tick_length; // up.
+ }
+ if (derived().x_ticks_.down_ticks_on_)
+ {
+ y2 += x_tick_length; // down.
+ }
+ }
           else
           { // Internal style, draw tick up and/or down from the X-axis line.
             y1 = derived().x_axis_.axis_; // X-axis horizontal line.
@@ -215,7 +228,7 @@
           if((x >= derived().plot_left_) && (x <= derived().plot_right_)) // now <=
           {
             double x_tick_length = derived().x_ticks_.major_tick_length_;
- if(derived().x_ticks_.ticks_on_plot_window_on_)
+ if(derived().x_ticks_.ticks_on_plot_window_on_ < 0)
             { // Put the ticks on the plot window border (was external).
               y_up = derived().plot_bottom_; // on the window line.
               y_down = derived().plot_bottom_; // y_up = upper, y_down = lower.
@@ -228,6 +241,19 @@
                 y_down += x_tick_length; // down.
               }
             }
+ else if(derived().x_ticks_.ticks_on_plot_window_on_ > 0)
+ { // Put the ticks on the plot window border (was external).
+ y_up = derived().plot_top_; // on the window line.
+ y_down = derived().plot_top_; // y_up = upper, y_down = lower.
+ if(derived().x_ticks_.up_ticks_on_)
+ {
+ y_up -= x_tick_length; // up
+ }
+ if (derived().x_ticks_.down_ticks_on_)
+ {
+ y_down += x_tick_length; // down.
+ }
+ }
             else
             { // Internal_style, draw tick from the central X axis line.
               y_up = derived().x_axis_.axis_; // X-axis line.
@@ -292,7 +318,7 @@
               }
 
               { // ! use_x_ticks_on_plot_window_ = Internal - value labels just below horizontal X-axis.
- if (derived().x_ticks_.ticks_on_plot_window_on_ || ((value != 0) && derived().x_axis_.axis_line_on_))
+ if ((derived().x_ticks_.ticks_on_plot_window_on_ != 0) || ((value != 0) && derived().x_axis_.axis_line_on_))
                 { // Avoid a "0" below the X-axis if it would be cut through by any internal vertical Y-axis line.
                   derived().image.get_g_element(detail::PLOT_VALUE_LABELS).text(
                     x, y,
@@ -312,21 +338,40 @@
         } // draw_x_major_ticks
 
         void draw_x_axis()
- { // Draw horizontal X-axis line &.
- if((derived().x_axis_.axis_line_on_) && (derived().x_axis_position_ == x_intersects_y))
- { // Draw the horizontal X-axis line the full width of the plot window,
- // perhaps including an addition in lieu of a major tick.
+ { // Draw horizontal X-axis line & plot window line to hold.
+ if(derived().x_axis_.axis_line_on_)
+ {
             double xleft = derived().plot_left_;
             double xright = derived().plot_right_;
- if (derived().y_ticks_.left_ticks_on_ && derived().x_ticks_.ticks_on_plot_window_on_
- )
- { // Extend the horizontal line left in lieu of longest tick.
- xleft -= (std::max)(derived().y_ticks_.minor_tick_length_, derived().y_ticks_.major_tick_length_);
- }
- double y = derived().x_axis_.axis_; // y = 0, (provided y range includes zero).
- derived().image.get_g_element(PLOT_X_AXIS).line(
- xleft, y,
- xright, y);
+ if (derived().x_axis_position_ == x_intersects_y)
+ { // Draw the horizontal X-axis line the full width of the plot window,
+ // perhaps including an addition in lieu of a major tick.
+ if (derived().y_ticks_.left_ticks_on_ && (derived().x_ticks_.ticks_on_plot_window_on_ != 0))
+ { // Extend the horizontal line left in lieu of longest tick.
+ xleft -= (std::max)(derived().y_ticks_.minor_tick_length_, derived().y_ticks_.major_tick_length_);
+ }
+ double y = derived().x_axis_.axis_; // y = 0, (provided y range includes zero).
+ derived().image.get_g_element(PLOT_X_AXIS).line(xleft, y, xright, y);
+ if (derived().x_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Draw a vertical line holding the ticks on the top of plot window.
+ derived().image.get_g_element(PLOT_X_AXIS).line(xleft, derived().plot_bottom_, xright, derived().plot_bottom_);
+ }
+ else if (derived().x_ticks_.ticks_on_plot_window_on_ > 0)
+ {// Draw a vertical line holding the ticks on the bottom of plot window.
+ derived().image.get_g_element(PLOT_X_AXIS).line(xleft, derived().plot_top_, xright, derived().plot_top_);
+ }
+ }
+ else if (derived().x_axis_position_ == top)
+ {
+ derived().image.get_g_element(PLOT_X_AXIS).line(xleft, derived().plot_top_, xright, derived().plot_top_);
+ }
+ else if (derived().x_axis_position_ == bottom)
+ {
+ derived().image.get_g_element(PLOT_X_AXIS).line(xleft, derived().plot_bottom_, xright, derived().plot_bottom_);
+ }
+ else
+ { // warn that things have gone wrong?
+ }
           } // x_axis_.axis_line_on_
 
           // Access the paths for the ticks & grids, ready for additions.
@@ -355,7 +400,7 @@
               // TODO this seems ugly - as does the negative ones below.
               draw_x_minor_ticks(j, minor_tick_path, minor_grid_path);
             } // for j
- if ((x != 0. || !derived().y_axis_.axis_line_on_) || derived().x_ticks_.ticks_on_plot_window_on_)
+ if ((x != 0. || !derived().y_axis_.axis_line_on_) || (derived().x_ticks_.ticks_on_plot_window_on_ != 0))
             { // Avoid a major tick at x == 0 where there *is* a vertical Y-axis line.
               // (won't be Y-axis line for 1-D where the zero tick is always wanted).
               draw_x_major_ticks(x, major_tick_path, major_grid_path);
@@ -373,14 +418,14 @@
 
               j -= x_minor_jump)
             {
- if ((j != 0. || !derived().y_axis_.axis_line_on_) || derived().x_ticks_.ticks_on_plot_window_on_)
+ if ((j != 0. || !derived().y_axis_.axis_line_on_) || (derived().x_ticks_.ticks_on_plot_window_on_ != 0))
               { // Avoid a minor tick at x == 0 where there *is* a vertical Y-axis line.
                 // (won't be Y-axis line for 1-D where the zero tick is always wanted).
                 // But no tick means no value label 0 either unless on_plot_window.
                 draw_x_minor_ticks(j, minor_tick_path, minor_grid_path);
               }
             }
- if ((x != 0. || !derived().y_axis_.axis_line_on_) || derived().x_ticks_.ticks_on_plot_window_on_)
+ if ((x != 0. || !derived().y_axis_.axis_line_on_) || (derived().x_ticks_.ticks_on_plot_window_on_ != 0))
             { // Avoid a major tick at x == 0 where there *is* a vertical Y-axis line.
               // (won't be Y-axis line for 1-D where the zero tick is always wanted).
               // But no tick means no value label 0 either unless on_plot_window.
@@ -501,13 +546,13 @@
               }
               break;
                 // If outside then reserve space for legend by reducing plot window.
- case outside_right:
+ case outside_right: // Default.
               // so that it isn't too close to the image edge or the plot window.
               derived().plot_right_ -= derived().legend_width_ + spacing; // Narrow plot window from right.
               derived().legend_left_ = derived().plot_right_; // plot + border.
               derived().legend_right_ = derived().legend_left_ + derived().legend_width_;
               derived().legend_top_ = derived().plot_top_; // Level with top of plot window.
- //derived().legend_top_ += spacing; // down a bit.
+ //derived().legend_top_ += spacing; // down a bit? Or could center vertically?
               derived().legend_bottom_ = derived().legend_top_ + derived().legend_height_;
               break;
             case outside_left:
@@ -539,11 +584,11 @@
               break;
               } // switch
 
- std::cout << "Legend: left " << derived().legend_left_
- << ", right " << derived().legend_right_
- << ", top " << derived().legend_top_
- << ", bottom " << derived().legend_bottom_
- << std::endl;
+ //std::cout << "Legend: left " << derived().legend_left_
+ // << ", right " << derived().legend_right_
+ // << ", top " << derived().legend_top_
+ // << ", bottom " << derived().legend_bottom_
+ // << std::endl;
 
               // Check if the location requested will fit,
               // now that we know the size of box needed.
@@ -1170,7 +1215,23 @@
 
           bool license_on()
           {
- return derived().image.is_license();
+ return derived().image.license_on();
+ }
+
+ Derived& license_on(bool l)
+ {
+ derived().image.license_on(l);
+ return derived();
+ }
+ bool boost_license_on()
+ {
+ return derived().image.boost_license_one();
+ }
+
+ Derived& boost_license_on(bool l)
+ {
+ derived().image.boost_license_on(l);
+ return derived();
           }
 
           const std::string license_reproduction()
@@ -1681,20 +1742,20 @@
             return derived().image.get_g_element(detail::PLOT_VALUE_LABELS).style().stroke_color();
           }
 
- Derived& x_ticks_on_plot_window_on(bool cmd)
- { // External style.
+ Derived& x_ticks_on_plot_window_on(int cmd)
+ { // External style, top = +1, bottom = -1 (default).
             derived().x_ticks_.ticks_on_plot_window_on_ = cmd;
             return derived();
           }
 
- bool x_ticks_on_plot_window_on()
+ int x_ticks_on_plot_window_on()
           { // External style = true.
             return derived().x_ticks_.ticks_on_plot_window_on_;
           }
 
           Derived& x_label_units_on(bool cmd)
           {
- derived().x_axis_.label_units_on = cmd;
+ derived().x_axis_.label_units_on_ = cmd;
             return derived();
           }
 

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/svg.hpp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/svg.hpp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/svg.hpp 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -20,6 +20,7 @@
 //#include "stylesheet.hpp" // TODO better to be called svg_stylesheet.hpp?
 #include "detail/svg_tag.hpp" // element class definitions.
 #include "svg_style.hpp"
+//#include "svg_fwd.hpp"
 
 // SVG stands for Scalable Vector Graphics,
 // an XML grammar for stylable graphics, usable as an XML namespace.
@@ -420,27 +421,29 @@
     return *this;
   }
 
- svg& license(bool l)
+ svg& license_on(bool l)
   { // Set (or not) license using all requirement (default permits).
+ // Implicitly set by setting a license requirement using license above.
     is_license_ = l;
     return *this;
   }
 
- bool is_license()
+ bool license_on()
   { // Shows if a license has been requested in the svg header metatadata.
     return is_license_;
   }
 
- svg& boost_license(bool l)
+ svg& boost_license_on(bool l)
   { // Set (or not) Boost license.
     is_boost_license_ = l;
     return *this;
   }
 
- bool is_boost_license()
+ bool boost_license_on()
   { // Shows if a license has been requested in the svg header metatadata.
     return is_boost_license_;
   }
+
   const std::string& reproduction()
   { // Gets license reproduction requirement.
     return reproduction_;

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/svg_2d_plot.hpp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/svg_2d_plot.hpp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/svg_2d_plot.hpp 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -222,12 +222,11 @@
       legend_places legend_place_; // Place for any legend box.
       double legend_width_; // Width of legend box (pixels).
       double legend_height_; // Height of legend box (in pixels).
+ // Size of legend box is controlled by its contents,
+ // but helpful to store computed coordinates.
       double legend_left_; // Left of legend box.
       double legend_top_; // Top of legend box.
       // Both optionally set by legend_top_left.
- // Size of legend box is controlled by its contents,
- // but helpful to store bottom right coordinates.
- // legend_bottom_right() gives access.
       double legend_right_; // SVG Coordinates of right of legend box,
       double legend_bottom_; // bottom of legend box.
       size_t legend_longest_; // longest (both header & data) string in legend box,
@@ -243,7 +242,6 @@
       bool outside_legend_on_; // legend box outside the plot window.
       bool legend_lines_; // get/set by legend_lines(bool); data colored line type in legend box.
       bool plot_window_on_; // Use a separate plot window (not whole image).
- //bool axes_on_; // Draw *both* x and y axes lines. useful?
       bool x_ticks_on_; // TODO check these are really useful.
       bool y_ticks_on_;
 
@@ -281,26 +279,27 @@
         x_label_info_(0, 0, "X Axis", x_axis_label_style_, center_align, horizontal),
         x_units_info_(0, 0, " (units)", x_value_label_style_, center_align, horizontal),
         x_label_value_(0, 0, "", x_value_label_style_, center_align, horizontal),
- x_axis_(X), // For defaults see axis_line_style.
- y_axis_(Y),
+ x_axis_(X, -10., +10., black, 1, 0, true, false, true),
+ y_axis_(Y, -10., +10., black, 1, 0, true, false, true),
+ // TODO fil in all values.
         x_ticks_(X),// For defaults see ticks_labels_style.
         y_ticks_(Y),
         y_label_info_(0, 0, "Y Axis", y_axis_label_style_, center_align, upward),
         y_units_info_(0, 0, " (units)", y_axis_label_style_, center_align, upward),
         y_label_value_(0, 0, "", y_value_label_style_, center_align, upward),
         text_margin_(2.), // for axis label text, as a multiplier of the font size.
- image_border_(blue, whitesmoke, 2, 3, true, true),
+ image_border_(yellow, white, 2, 3, true, true),
         plot_window_border_(yellow, svg_color(255, 255, 255), 2, 3, true, false),
         legend_header_(0, 0, "", legend_style_, center_align, horizontal),
         legend_width_(200), // width of legend box (pixels) // TODO isn't this calculated?
         legend_height_(0), // height of legend box (pixels)
         legend_left_(-1), legend_right_(-1),legend_top_(-1),legend_bottom_(-1), // Default top left of plot window.
         legend_place_(outside_right), // default but interacts with using plot_window
+ legend_on_(false),
         legend_longest_(0),
+ outside_legend_on_(true),
         plot_window_clip_("plot_window"), // for <clipPath id="plot_window" ...
         title_on_(true),
- legend_on_(false),
- outside_legend_on_(true),
         plot_window_on_(true),
         // Used to transform Cartesian to SVG.
         x_scale_(1.), x_shift_(0.),
@@ -418,13 +417,13 @@
         if(plot_window_on_)
         { // Reduce to allow plot window border.
           // Needed to allow any plot window border rectangle to show OK.
- // margin is to prevent it being right on the image border.
+ // A small margin is to prevent it being right on the image border.
           plot_left_ += image_border_.margin_; // pixels.
           plot_right_ -= image_border_.margin_;
           plot_top_ += image_border_.margin_;
           plot_bottom_ -= image_border_.margin_;
         }
- if(x_axis_.label_on_)
+ if((!legend_on_) && (x_axis_.label_on_))
         { // Need to avoid rightmost X-axis label running off image.
           // Might need more if a long horizontal label?
           plot_right_ -= text_margin_ * x_value_label_style_.font_size();
@@ -435,25 +434,25 @@
         if (y_axis_.min_ > std::numeric_limits<double>::min()) // all Y values definitely > zero.
         { // y_min_ > 0, so X-axis will not intersect Y-axis, so use bottom plot window.
           x_axis_position_ = bottom; // X-axis to bottom of plot window.
- x_ticks_.ticks_on_plot_window_on_ = true;
+ x_ticks_.ticks_on_plot_window_on_ = -1; // bottom = true;
         }
         else if(y_axis_.max_ < -std::numeric_limits<double>::min()) // all Y values definitely < zero.
         { // // y_max_ < 0, so X-axis will not intersect Y-axis, so use top plot window.
           x_axis_position_ = top; // X-axis to top of plot window.
- x_ticks_.ticks_on_plot_window_on_ = true;
+ x_ticks_.ticks_on_plot_window_on_ = +1; // top = true;
         }
         // Y axis position is determined by the range of X values.
         y_axis_position_ = y_intersects_x; // Assume Y-axis will intersect X-axis (X range includes zero).
         if (x_axis_.min_ > std::numeric_limits<double>::min()) // X values all definitely > zero.
         { // Y-axis > 0, so will not intersect X-axis.
           y_axis_position_ = left; // Y-axis free to left of end of X-axis.
- y_ticks_.ticks_on_plot_window_on_ = true; // because floating off end of X-axis.
+ y_ticks_.ticks_on_plot_window_on_ = -1; // left true; // because floating off end of X-axis.
           // so need to put the labels on the plot window instead of the X-axis.
         }
         else if (x_axis_.max_ < -std::numeric_limits<double>::min()) // Y all definitely < zero.
         { // Y-axis < 0, so will not intersect X-axis.
           y_axis_position_ = right;
- y_ticks_.ticks_on_plot_window_on_ = true;
+ y_ticks_.ticks_on_plot_window_on_ = +1; // right = true;
         }
 
         // Calculate the lengths of the longest value labels.
@@ -488,33 +487,61 @@
           // // because major ticks and label are on the plot window
           // use_y_ticks_on_plot_window_ = true;
           //}
- if (y_ticks_.ticks_on_plot_window_on_)
- { // Move plot window right to make space for value labels,
+ if (y_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Move plot window right to make space for value labels on left,
             plot_left_ += y_label_length_;
           }
+ else if (y_ticks_.ticks_on_plot_window_on_ > 0)
+ { // Move plot window right to make space for value labels on right,
+ plot_right_ -= y_label_length_;
+ }
         }
 
- if (x_ticks_.major_value_labels_on && (x_ticks_.ticks_on_plot_window_on_ || (x_axis_position_ != top) ))
- { // Move bottom of plot window up to give space for x value labels.
- double x_label_length_ = 0;
- if(x_ticks_.label_rotation_ == horizontal)
- { // Only 1 char height & 1 space needed if labels are horizontal.
- x_label_length_ = 2; // SVG chars
- }
- else
- { // ! horizontal so will need more than 2
- if ((x_ticks_.label_rotation_ == upward) || (x_ticks_.label_rotation_ == downward))
- { // Need space for longest.
- x_label_length_+= x_ticks_.label_max_chars_ * wh; // SVG chars.
+ if (x_ticks_.major_value_labels_on)
+ {
+ if ((x_ticks_.ticks_on_plot_window_on_ < 0) || (x_axis_position_ != top) )
+ { // Move bottom of plot window up to give space for x value labels.
+ double x_label_length_ = 0;
+ if(x_ticks_.label_rotation_ == horizontal)
+ { // Only 1 char height & 1 space needed if labels are horizontal.
+ x_label_length_ = 2; // SVG chars
+ }
+ else
+ { // ! horizontal so will need more than 2
+ if ((x_ticks_.label_rotation_ == upward) || (x_ticks_.label_rotation_ == downward))
+ { // Need space for longest.
+ x_label_length_+= x_ticks_.label_max_chars_ * wh; // SVG chars.
+ }
+ else
+ { // Assume label is sloping, say 45, so * sin(45) = 0.707.
+ x_label_length_+= x_ticks_.label_max_chars_ * wh * sin45; // SVG 'chars'.
+ }
             }
- else
- { // Assume label is sloping, say 45, so * sin(45) = 0.707.
- x_label_length_+= x_ticks_.label_max_chars_ * wh * sin45; // SVG 'chars'.
+ x_label_length_ *= x_value_label_style_.font_size(); // Total length in SVG.
+ plot_bottom_ -= x_label_length_; // Move up.
+ }
+ else if ((x_ticks_.ticks_on_plot_window_on_ > 0) || (x_axis_position_ != bottom) )
+ { // Move top of plot window down to give space for x value labels.
+ double x_label_length_ = 0;
+ if(x_ticks_.label_rotation_ == horizontal)
+ { // Only 1 char height & 1 space needed if labels are horizontal.
+ x_label_length_ = 2; // SVG chars
+ }
+ else
+ { // ! horizontal so will need more than 2
+ if ((x_ticks_.label_rotation_ == upward) || (x_ticks_.label_rotation_ == downward))
+ { // Need space for longest.
+ x_label_length_+= x_ticks_.label_max_chars_ * wh; // SVG chars.
+ }
+ else
+ { // Assume label is sloping, say 45, so * sin(45) = 0.707.
+ x_label_length_+= x_ticks_.label_max_chars_ * wh * sin45; // SVG 'chars'.
+ }
             }
+ x_label_length_ *= x_value_label_style_.font_size(); // Total length in SVG.
+ plot_top_ += x_label_length_; // Move down.
           }
- x_label_length_ *= x_value_label_style_.font_size(); // Total length in SVG.
- plot_bottom_ -= x_label_length_; // Move up.
- }
+ } // major_value_labels_on
         if(y_ticks_.left_ticks_on_)
         { // Start left of plot to right to give space for biggest of any external left ticks.
           plot_left_ += (std::max)(y_ticks_.major_tick_length_, y_ticks_.minor_tick_length_); // Avoid macro max trap!
@@ -566,6 +593,7 @@
           }
         } // if (use_y_axis_line_)
 
+ // TODO this can move up to after last change to plot_left ...???
         // Calculate scale and shift factors for transform from Cartesian to plot.
         // SVG image is 0, 0 at top left,y increase *downwards*
         // Cartesian 0, 0 at bottom left, y increasing upwards.
@@ -606,16 +634,40 @@
         x = y_axis_.axis_; // Y-axis (x = 0) transformed into X SVG coordinates.
         // Perhaps to left or right of plot window if X values do not include zero.
 
- if ((y_axis_.axis_line_on_) && (y_axis_position_ == y_intersects_x))
- { // Draw the vertical Y-axis line (at cartesian x = 0).
- double ybottom = plot_bottom_;
- if (x_ticks_.down_ticks_on_ && y_ticks_.ticks_on_plot_window_on_ && (x_axis_position_ == x_intersects_y) )
- { // Extend the vertical line down in lieu of longest tick.
- ybottom += (std::max)(x_ticks_.minor_tick_length_, x_ticks_.major_tick_length_);// Avoid macro max trap!
+ if (y_axis_.axis_line_on_)
+ {
+ if (y_axis_position_ == y_intersects_x)
+ { // Draw the vertical Y-axis line at cartesian x = 0).
+ double ybottom = plot_bottom_;
+ if (x_ticks_.down_ticks_on_ && (y_ticks_.ticks_on_plot_window_on_ != 0) && (x_axis_position_ == x_intersects_y) )
+ { // Extend the vertical line down in lieu of longest tick.
+ ybottom += (std::max)(x_ticks_.minor_tick_length_, x_ticks_.major_tick_length_);// Avoid macro max trap!
+ }
+ image.get_g_element(detail::PLOT_Y_AXIS).line(x, plot_top_, x, ybottom);
+ // <g id="yAxis" stroke="rgb(0,0,0)"><line x1="70.5" y1="53" x2="70.5" y2="357"/>
+ if (y_ticks_.ticks_on_plot_window_on_ < 0) //(y_axis_position_ == left)
+ { // Draw vertical line holding the ticks on the left of plot window.
+ image.get_g_element(detail::PLOT_Y_AXIS).line(plot_left_, plot_top_, plot_left_, plot_bottom_);
+ }
+ else
+ {// Draw vertical line holding the ticks on the right of plot window.
+ image.get_g_element(detail::PLOT_Y_AXIS).line(plot_right_, plot_top_, plot_right_, plot_bottom_);
+ }
+ }
+ else if (y_axis_position_ == left)
+ { // Draw on the left of plot window.
+ image.get_g_element(detail::PLOT_Y_AXIS).line(plot_left_, plot_top_, plot_left_, plot_bottom_);
+ }
+ else if (y_axis_position_ == right)
+ {// Draw on the lright of plot window.
+ image.get_g_element(detail::PLOT_Y_AXIS).line(plot_right_, plot_top_, plot_right_, plot_bottom_);
+ }
+ else
+ { // ??? Warn that things have gone wrong?
           }
- image.get_g_element(detail::PLOT_Y_AXIS).line(x, plot_top_, x, ybottom);
- // <g id="yAxis" stroke="rgb(0,0,0)"><line x1="70.5" y1="53" x2="70.5" y2="357"/>
         }
+
+
         // Access the paths for the ticks & grids, ready for additions.
         path_element& minor_tick_path = image.get_g_element(detail::PLOT_Y_MINOR_TICKS).path();
         path_element& major_tick_path = image.get_g_element(detail::PLOT_Y_MAJOR_TICKS).path();
@@ -647,7 +699,7 @@
               draw_y_minor_ticks(j, minor_tick_path, minor_grid_path);
             }
           }
- if ((y != 0. || ! x_axis_.axis_line_on_) || y_ticks_.ticks_on_plot_window_on_)
+ if ((y != 0. || ! x_axis_.axis_line_on_) || (y_ticks_.ticks_on_plot_window_on_ != 0))
           { // Avoid a major tick at y == 0 where there *is* a horizontal X-axis line.
             // (won't be X-axis line for 1-D where the zero tick is always wanted).
             draw_y_major_ticks(y, major_tick_path, major_grid_path);
@@ -659,13 +711,13 @@
         {
           for(double j = y; j > y - y_ticks_.major_interval_; j-= y_ticks_.major_interval_ / (y_ticks_.num_minor_ticks_ + 1))
           { // Draw minor ticks.
- if ((j != 0. || ! y_axis_.axis_line_on_) || y_ticks_.ticks_on_plot_window_on_)
+ if ((j != 0. || ! y_axis_.axis_line_on_) || (y_ticks_.ticks_on_plot_window_on_ != 0))
             { // Avoid a major tick at y == 0 where there *is* a horizontal X-axis line.
               // (won't be X-axis line for 1-D where the zero tick is always wanted).
               draw_y_minor_ticks(j, minor_tick_path, minor_grid_path);
             }
           }
- if ((y != 0. || ! x_axis_.axis_line_on_) || y_ticks_.ticks_on_plot_window_on_)
+ if ((y != 0. || ! x_axis_.axis_line_on_) || (y_ticks_.ticks_on_plot_window_on_ != 0))
           { // Avoid a major tick at y == 0 where there *is* a horizontal X-axis line.
             // (won't be X-axis line for 1-D where the zero tick is always wanted).
             draw_y_major_ticks(y, major_tick_path, major_grid_path);
@@ -676,7 +728,7 @@
       void draw_y_label()
       { // Draw vertical y_axis_ label, and optional units.
         std::string label = y_label_info_.text();
- if (x_ticks_.label_units_on_ && (y_units_info_.text() != ""))
+ if (y_axis_.label_units_on_ && (y_units_info_.text() != ""))
         { // Append the units, user must provide any ()s, if wanted.
           label += y_units_info_.text() ;
         }
@@ -697,7 +749,7 @@
         double y(value); // for tick and/or grid.
         transform_y(y); // Cartesian to SVG coordinates.
         if((y < plot_top_) || (y > plot_bottom_))
- {
+ { // tick value is outside plot window, so nothing to do.
           return;
         }
         double x_left(0.); // Left end of tick.
@@ -724,14 +776,19 @@
           }
         } // use_y_major_grid_
 
- if((y <= plot_bottom_) && (y >= plot_top_))
+ if ((y <= plot_bottom_) && (y >= plot_top_))
         { // Make sure that we are drawing inside the allowed window.
           double y_tick_length = y_ticks_.major_tick_length_;
- if(y_ticks_.ticks_on_plot_window_on_) // (was external_style)
- { // Start ticks on the plot window border.
+ if (y_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Start ticks on the plot window border left.
             x_left = plot_left_; // x_left = left,
             x_right = plot_left_; // x_right = right.
           }
+ else if (y_ticks_.ticks_on_plot_window_on_ > 0)
+ { // Start ticks on the plot window border right.
+ x_left = plot_right_;
+ x_right = plot_right_;
+ }
           else
           { // Internal style ticks on vertical Y-axis.
             x_left = y_axis_.axis_; // Y-axis line.
@@ -767,8 +824,8 @@
           }
           // Need to work out how much space value labels will need.
           align_style alignment = center_align;
- if(y_ticks_.ticks_on_plot_window_on_)
- { // External to plot window style.
+ if(y_ticks_.ticks_on_plot_window_on_ != 0)
+ { // External to plot window style left or right.
             if(y_ticks_.label_rotation_ == horizontal)
             { // Just shift down half a digit to center value digits on tick.
               alignment = right_align;
@@ -786,14 +843,14 @@
               alignment = right_align;
             }
             // Always want all values including "0", if labeling external to plot window.
- // ticks_on_plot_window_on_ == true
+ // y_ticks_.ticks_on_plot_window_on_ == true != 0
             image.get_g_element(detail::PLOT_VALUE_LABELS).text(
               x_left,
               y,
               label.str(), y_value_label_style_, alignment, y_ticks_.label_rotation_);
           }
           else
- { // ! use_y_ticks_on_plot_window_ == Internal - value labels close to left of vertical Y-axis.
+ { // ! y_ticks_.y_ticks_on_plot_window_ == 0 Internal - value labels close to left of vertical Y-axis.
             if ((value != 0) && y_axis_.axis_line_on_)
             { // Avoid a zero ON the Y-axis if it would be cut through by any horizontal X-axis line.
               y += y_value_label_style_.font_size() / 2;
@@ -839,13 +896,18 @@
           // TODO else just ignore outside plot window?
         }
 
- if(y_ticks_.ticks_on_plot_window_on_)
- { // Put y minor ticks on the plot window border. External style.
- x_left = plot_left_; // On the plot window border.
+ if(y_ticks_.ticks_on_plot_window_on_ < 0)
+ { // Put y minor ticks on the plot window border left.
+ x_left = plot_left_;
           x_right = plot_left_;
         }
+ else if (y_ticks_.ticks_on_plot_window_on_ > 0)
+ { // Put y minor ticks on the plot window border left.
+ x_left = plot_right_;
+ x_right = plot_right_;
+ }
         else
- { // Internal style.
+ { // Internal style,
           x_left = y_axis_.axis_; // On the Y-axis line.
           x_right = y_axis_.axis_;
         }
@@ -1474,7 +1536,7 @@
         return y_ticks_.minor_tick_width_;
       }
 
- svg_2d_plot& x_ticks_on_plot_window_on(bool is)
+ svg_2d_plot& x_ticks_on_plot_window_on(int is)
       {
         x_ticks_.ticks_on_plot_window_on_ = is;
         return *this;
@@ -1485,7 +1547,7 @@
         return x_ticks_.ticks_on_plot_window_on_;
       }
 
- svg_2d_plot& y_ticks_on_plot_window_on(bool is)
+ svg_2d_plot& y_ticks_on_plot_window_on(int is)
       {
         y_ticks_.ticks_on_plot_window_on_ = is;
         return *this;

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/svg_style.hpp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/svg_style.hpp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/svg_style.hpp 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -559,7 +559,6 @@
     // enum y_axis_intersect {left = -1, y_intersects_x = 0, right = +1};
     // If axes look like an L, then is bottom left.
     // If a T then y intersects and x is at bottom.
- // TODO check this is right!
     bool label_on_; // Label X-axis with text - example: "length".
     bool label_units_on_; // Label X-axis units, example: "cm".
     bool axis_line_on_; // Draw a X horizontal or Y vertical axis line.
@@ -567,13 +566,15 @@
     axis_line_style(dim d = X,
       double min = -10., double max = +10., // defaults.
       const svg_color col = black, double width = 1,
- int axis_position = 0, bool use_label = true)
+ int axis_position = 0, bool label_on = true,
+ bool label_units_on = false,
+ bool axis_lines_on = true)
       :
       dim_(d), min_(min), max_(max), color_(col), axis_width_(width),
       axis_position_(axis_position),
- label_on_(use_label),
- label_units_on_(true), // default is include units.
- axis_line_on_(true),
+ label_on_(label_on),
+ label_units_on_(label_units_on), // default is include units.
+ axis_line_on_(axis_lines_on),
       axis_(-1) // Not calculated yet.
    { // Initialize all private data.
       if(max_ <= min_)
@@ -670,18 +671,17 @@
     // Simplest to have all of these although only one pair like up or down is used.
     // Unused are always false.
     bool major_value_labels_on; // Label X values for major ticks.
- bool label_units_on_; // Label X-axis units.
     rotate_style label_rotation_; // Direction X_axis value labels written.
     bool major_grid_on_; // Draw X grid at major ticks.
     bool minor_grid_on_;// Draw X grid at minor ticks.
     int value_precision_; // precision for tick value labels, usually 3 will suffice.
     int value_ioflags_; // IO formatting flags for the axis.
- bool strip_e0s_;
+ bool strip_e0s_; // If redundant zero, + and e are to be stripped.
     rotate_style x_label_rotation_; // Direction X_axis value labels written.
- //double label_length_; // width (in SVG units) of longest label on axis.
     size_t label_max_chars_; // width (in SVG units) of longest label on axis.
- // TODO appear to be duplicates.
- bool ticks_on_plot_window_on_; // Value labels & ticks on the plot window rather than on X or Y-axis.
+ int ticks_on_plot_window_on_; // Value labels & ticks on the plot window rather than on X or Y-axis.
+ // For X-axis -1 = left, 0 = false, +1 = right. Default left.
+ // For Y-axis -1 = bottom, 0 = false, +1 = top. Default bottom.
 
     ticks_labels_style(dim d = X,
       double max = 10., double min = -10.,
@@ -717,7 +717,7 @@
     // Simplest to have all of these although only one pair like up or down is used.
     // Unused are always false.
     major_value_labels_on(true), // Label values for major ticks.
- label_units_on_(true), // Label axis units.
+ //label_units_on_(true), // Label axis units.
     label_rotation_(horizontal), // Direction axis value labels written.
     major_grid_on_(false), // Draw grid at major ticks.
     minor_grid_on_(false),// Draw grid at minor ticks.
@@ -726,7 +726,8 @@
     // Note that ALL the flags are set, overwriting any defaults, so std::dec is wise.
     strip_e0s_(true), // strip superflous zeros and signs.
     label_max_chars_(0), // width (in SVG units) of longest label on axis.
- ticks_on_plot_window_on_(true) // Value labels & ticks on the plot window rather than on X or Y-axis.
+ ticks_on_plot_window_on_(-1) // Value labels & ticks on the plot window rather than on X or Y-axis.
+ // Default -1 means left or bottom.
   {
       if(max_ <= min_)
       { // max_ <= min_.

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/index.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/index.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/index.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -3,32 +3,32 @@
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>SVG_Plot</title>
 <link rel="stylesheet" href="../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="index.html" title="SVG_Plot">
-<link rel="next" href="svg_plot/howtouse.html" title="How To Use This Documentation">
+<link rel="next" href="svg_plot/howtouse.html" title=" How To Use This Documentation">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
-<div class="spirit-nav"><a accesskey="n" href="svg_plot/howtouse.html"><img src="images/next.png" alt="Next"></a></div>
+<div class="spirit-nav"><a accesskey="n" href="svg_plot/howtouse.html"><img src="../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a></div>
 <div class="article" lang="en">
 <div class="titlepage">
 <div>
 <div><h2 class="title">
 <a name="svg_plot"></a>SVG_Plot</h2></div>
-<div><div class="author"><h3 class="author">
+<div><div class="authorgroup"><div class="author"><h3 class="author">
 <span class="firstname">Jake</span> <span class="surname">Voytko</span>
-</h3></div></div>
+</h3></div></div></div>
 <div><p class="copyright">Copyright © 2007 Jake Voytko</p></div>
 <div><div class="legalnotice">
-<a name="id345816"></a><p>
+<a name="id623859"></a><p>
         Distributed under the Boost Software License, Version 1.0. (See accompanying
         file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
       </p>
@@ -45,20 +45,28 @@
 <dt><span class="section"> SVG tutorial</span></dt>
 <dt><span class="section"> Tutorial: 1D</span></dt>
 <dd><dl>
-<dt><span class="section"> Simple 1D Example</span></dt>
-<dt><span class="section"> Tutorial: 1D Full Layout Example</span></dt>
-<dt><span class="section"> Tutorial: 1D Special Features</span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_code_1d_simple/tutorial_code_1d_example.html">
+ Simple 1D Example</a></span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_code_1d_simple/full_1d_layout.html"> Tutorial:
+ 1D Full Layout Example</a></span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_code_1d_simple/1d_special.html"> Tutorial:
+ 1D Special Features</a></span></dt>
 </dl></dd>
 <dt><span class="section"> Tutorial: 2D</span></dt>
 <dd><dl>
-<dt><span class="section"> Simple Code Example</span></dt>
-<dt><span class="section"> Tutorial: Fuller Layout Example</span></dt>
-<dt><span class="section"> Tutorial: 2D Special Features</span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_2d_code_simple/2d_simple_code_example.html">
+ Simple Code Example</a></span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_2d_code_simple/full_2d_layout.html"> Tutorial:
+ Fuller Layout Example</a></span></dt>
+<dt><span class="section"><a href="svg_plot/tutorial_2d_code_simple/2d_special.html"> Tutorial:
+ 2D Special Features</a></span></dt>
 </dl></dd>
 <dt><span class="section"> Tutorial: Boxplot</span></dt>
 <dd><dl>
-<dt><span class="section"> Simple Example</span></dt>
-<dt><span class="section"> Full Boxplot Layout</span></dt>
+<dt><span class="section"><a href="svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html">
+ Simple Example</a></span></dt>
+<dt><span class="section"><a href="svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_full.html">
+ Full Boxplot Layout</a></span></dt>
 </dl></dd>
 <dt><span class="section"> Stylesheet Tutorial</span></dt>
 <dt><span class="section"> Behavior</span></dt>
@@ -68,18 +76,18 @@
 </dl></dd>
 <dt><span class="section"> Plot Defaults</span></dt>
 <dd><dl>
-<dt><span class="section"> svg_1d_plot Defaults</span></dt>
-<dt><span class="section"> svg_2d_plot Defaults</span></dt>
+<dt><span class="section"><a href="svg_plot/plot_defaults/1d_defaults.html"> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code>
+ Defaults</a></span></dt>
+<dt><span class="section"><a href="svg_plot/plot_defaults/2d_defaults.html"> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code>
+ Defaults</a></span></dt>
 </dl></dd>
 <dt><span class="section"> Public Interfaces</span></dt>
 <dd><dl>
-<dt><span class="section"> svg Public Interface</span></dt>
-<dt><span class="section"><a href="svg_plot/interface/svg_1d_plot_interface.html"> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code> Public
- Interface</a></span></dt>
-<dt><span class="section"><a href="svg_plot/interface/svg_2d_plot_interface.html"> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code> Public
- Interface</a></span></dt>
-<dt><span class="section"><a href="svg_plot/interface/svg_boxplot_interface.html"> <code class="computeroutput"><span class="identifier">svg_boxplot</span></code> Public
- Interface</a></span></dt>
+<dt><span class="section"><a href="svg_plot/interface/svg_interface.html"> <code class="computeroutput"><span class="identifier">svg</span></code>
+ Public Interface</a></span></dt>
+<dt><span class="section"> svg_1d_plot Public Interface</span></dt>
+<dt><span class="section"> svg_2d_plot Public Interface</span></dt>
+<dt><span class="section"> svg_boxplot Public Interface</span></dt>
 </dl></dd>
 <dt><span class="section"> Implementation & Rationale</span></dt>
 <dt><span class="section"> Acknowledgements</span></dt>
@@ -87,10 +95,10 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><small><p>Last revised: January 08, 2008 at 04:29:17 GMT</p></small></td>
-<td align="right"><small></small></td>
+<td align="left"><p><small>Last revised: January 15, 2008 at 10:46:54 GMT</small></p></td>
+<td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>
-<div class="spirit-nav"><a accesskey="n" href="svg_plot/howtouse.html"><img src="images/next.png" alt="Next"></a></div>
+<div class="spirit-nav"><a accesskey="n" href="svg_plot/howtouse.html"><img src="../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a></div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/acknowledgements.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/acknowledgements.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/acknowledgements.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,29 +1,30 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Acknowledgements</title>
+<title> Acknowledgements</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="implementation.html" title="Implementation &amp; Rationale">
+<link rel="prev" href="implementation.html" title=" Implementation &amp; Rationale">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="implementation.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a>
+<a accesskey="p" href="implementation.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.acknowledgements"></a> Acknowledgements</h2></div></div></div>
+<a name="svg_plot.acknowledgements"></a> Acknowledgements
+</h2></div></div></div>
 <p>
       I would like to thank the following people:
     </p>
@@ -58,11 +59,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="implementation.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a>
+<a accesskey="p" href="implementation.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,31 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Behavior</title>
+<title> Behavior</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="tutorial_stylesheet.html" title="Stylesheet Tutorial">
-<link rel="next" href="behavior/behavior_limits.html" title="Numerical Limits">
+<link rel="prev" href="tutorial_stylesheet.html" title=" Stylesheet Tutorial">
+<link rel="next" href="behavior/behavior_limits.html" title=" Numerical Limits">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_stylesheet.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="behavior/behavior_limits.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_stylesheet.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior/behavior_limits.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.behavior"></a> Behavior</h2></div></div></div>
+<a name="svg_plot.behavior"></a> Behavior
+</h2></div></div></div>
 <div class="toc"><dl>
 <dt><span class="section"> Numerical Limits</span></dt>
 <dt><span class="section"> Stylesheets</span></dt>
@@ -32,11 +33,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_stylesheet.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="behavior/behavior_limits.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_stylesheet.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior/behavior_limits.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_limits.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_limits.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_limits.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,31 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Numerical Limits</title>
+<title> Numerical Limits</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../behavior.html" title="Behavior">
-<link rel="prev" href="../behavior.html" title="Behavior">
-<link rel="next" href="behavior_stylesheets.html" title="Stylesheets">
+<link rel="up" href="../behavior.html" title=" Behavior">
+<link rel="prev" href="../behavior.html" title=" Behavior">
+<link rel="next" href="behavior_stylesheets.html" title=" Stylesheets">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../behavior.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="behavior_stylesheets.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior_stylesheets.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.behavior.behavior_limits"></a> Numerical Limits</h3></div></div></div>
+<a name="svg_plot.behavior.behavior_limits"></a> Numerical Limits
+</h3></div></div></div>
 <p>
         All limits that are dealt with are double precision floating-point limits.
         Limits are detected when data is added to the plot by the call to the <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
@@ -32,15 +33,18 @@
       </p>
 <p>
         Currently, the line interpolation algorithms do not take limits into account,
- so behavior may be incorrect for such plots as <code class="computeroutput"><span class="number">1</span> <span class="special">/</span> <span class="identifier">x</span></code>.
+ so behavior may be incorrect for such plots as <code class="computeroutput"><span class="number">1</span>
+ <span class="special">/</span> <span class="identifier">x</span></code>.
       </p>
 <p>
- Data at the limits are drawn as a circle with <code class="computeroutput"><span class="identifier">_stroke_color</span> <span class="special">=</span> <span class="identifier">lightgray</span></code>
- and <code class="computeroutput"><span class="identifier">_fill_color</span> <span class="special">=</span> <span class="identifier">whitesmoke</span></code>. This will become customizable.
+ Data at the limits are drawn as a circle with <code class="computeroutput"><span class="identifier">_stroke_color</span>
+ <span class="special">=</span> <span class="identifier">lightgray</span></code>
+ and <code class="computeroutput"><span class="identifier">_fill_color</span> <span class="special">=</span>
+ <span class="identifier">whitesmoke</span></code>. This will become customizable.
       </p>
 <a name="svg_plot.behavior.behavior_limits.nan"></a><h5>
-<a name="id394930"></a>
- NaN
+<a name="id689274"></a>
+ NaN
       </h5>
 <p>
         Any double precision floating-point numbers that return a nonzero value for
@@ -49,8 +53,8 @@
         user-defined coordinates as 0.
       </p>
 <a name="svg_plot.behavior.behavior_limits.infinity"></a><h5>
-<a name="id394971"></a>
- Infinity
+<a name="id689333"></a>
+ Infinity
       </h5>
 <p>
         Any double precision floating point number that is equal to either of the
@@ -66,8 +70,9 @@
         appear at the top of the graph.
       </p>
 <a name="svg_plot.behavior.behavior_limits.negative_infinity"></a><h5>
-<a name="id395078"></a>
- Negative Infinity
+<a name="id689469"></a>
+ <a href="behavior_limits.html#svg_plot.behavior.behavior_limits.negative_infinity">Negative
+ Infinity</a>
       </h5>
 <p>
         Any double precision floating point number that is equal to either of the
@@ -92,11 +97,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../behavior.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="behavior_stylesheets.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior_stylesheets.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_stylesheets.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_stylesheets.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/behavior/behavior_stylesheets.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,31 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Stylesheets</title>
+<title> Stylesheets</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../behavior.html" title="Behavior">
-<link rel="prev" href="behavior_limits.html" title="Numerical Limits">
-<link rel="next" href="../plot_defaults.html" title="Plot Defaults">
+<link rel="up" href="../behavior.html" title=" Behavior">
+<link rel="prev" href="behavior_limits.html" title=" Numerical Limits">
+<link rel="next" href="../plot_defaults.html" title=" Plot Defaults">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="behavior_limits.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../plot_defaults.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="behavior_limits.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.behavior.behavior_stylesheets"></a> Stylesheets</h3></div></div></div>
+<a name="svg_plot.behavior.behavior_stylesheets"></a> Stylesheets
+</h3></div></div></div>
 <p>
         Stylesheets currently have only a single way of being used with the program:
         they are parsed by the <code class="computeroutput"><span class="identifier">svg</span></code>
@@ -68,59 +69,59 @@
       </p>
 <div class="caution"><table border="0" summary="Caution">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../images/caution.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../../../../../../../../../trunk/doc/html/images/caution.png"></td>
 <th align="left">Caution</th>
 </tr>
-<tr><td align="left" valign="top"><p>
+<tr><td align="left" valign="top">
+<p>
           Please note that the language that is accepted by the parser is actually
           stricter than the real CSS standard allows for. Following GSoC, the parser
           will be reimplemented to reflect the parser suggested by the CSS standard.
           All identifiers (class, ID, or otherwise), must be the <span class="bold"><strong>one
           and only</strong></span> identifier on the line. The following is not accepted:
- </p></td></tr>
-</table></div>
+ </p>
 <p>
- </p>
-<pre class="programlisting">
-<span class="identifier">rect</span><span class="special">,</span> <span class="identifier">circle</span>
-<span class="special">{</span>
- <span class="identifier">fill</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
- <span class="identifier">stroke</span> <span class="special">:</span> #<span class="number">000000</span><span class="special">;</span>
-<span class="special">}</span>
-</pre>
+ rect, circle { fill : #00FF00; stroke : #000000; }
+ </p>
 <p>
- But the following is:
- </p>
+ But the following is:
+ </p>
 <p>
-
+
 </p>
 <pre class="programlisting">
 <span class="identifier">rect</span>
 <span class="special">{</span>
- <span class="identifier">fill</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
- <span class="identifier">stroke</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
+ <span class="identifier">fill</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
+ <span class="identifier">stroke</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
 <span class="special">}</span>
 
 <span class="identifier">circle</span>
 <span class="special">{</span>
- <span class="identifier">fill</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
- <span class="identifier">stroke</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
+ <span class="identifier">fill</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
+ <span class="identifier">stroke</span> <span class="special">:</span> #<span class="number">00FF</span><span class="number">00</span><span class="special">;</span>
 <span class="special">}</span>
 </pre>
 <p>
- </p>
+ </p>
 <p>
- None of the power of CSS is compromised (I believe), but it becomes more
- verbose. ]
- </p>
+ None of the power of CSS is compromised (I believe), but it becomes more
+ verbose.
+ </p>
+</td></tr>
+</table></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="behavior_limits.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../plot_defaults.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="behavior_limits.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../behavior.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/color.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/color.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/color.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,37 +1,41 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Colors</title>
+<title> Colors</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="todo.html" title="To Do List">
-<link rel="next" href="svg_tutorial.html" title="SVG tutorial">
+<link rel="prev" href="todo.html" title=" To Do List">
+<link rel="next" href="svg_tutorial.html" title=" SVG tutorial">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="todo.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="svg_tutorial.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="todo.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_tutorial.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.color"></a> Colors</h2></div></div></div>
+<a name="svg_plot.color"></a> Colors
+</h2></div></div></div>
 <p>
       The project supports any <a href="http://en.wikipedia.org/wiki/RGB_color_model" target="_top">RGB
       color</a>, as well as a number of colors that are <a href="http://www.w3.org/TR/SVG/types.html#ColorKeywords" target="_top">named
       by the SVG standard</a>.
     </p>
+<a name="svg_plot.color._code__phrase_role__identifier__svg_color_constant__phrase___code_"></a><h4>
+<a name="id622212"></a>
+ svg_color_constant
+ </h4>
 <p>
- [heading <code class="computeroutput"><span class="identifier">svg_color_constant</span></code>]
       <code class="computeroutput"><span class="identifier">svg_color_constant</span></code> is simply
       an enumerated list.
     </p>
@@ -53,8 +57,9 @@
       for defining defaults for functions, for example.
     </p>
 <a name="svg_plot.color.example_of_using__code__phrase_role__identifier__svg_color_constant__phrase___code_"></a><h5>
-<a name="id385510"></a>
- Example of using <code class="computeroutput"><span class="identifier">svg_color_constant</span></code>
+<a name="id622335"></a>
+ <a href="color.html#svg_plot.color.example_of_using__code__phrase_role__identifier__svg_color_constant__phrase___code_">Example
+ of using <code class="computeroutput"><span class="identifier">svg_color_constant</span></code></a>
     </h5>
 <pre class="programlisting">
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -68,7 +73,7 @@
 </pre>
 <div class="note"><table border="0" summary="Note">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../../../trunk/doc/html/images/note.png"></td>
 <th align="left">Note</th>
 </tr>
 <tr><td align="left" valign="top">
@@ -82,17 +87,19 @@
         overload, so
 </p>
 <pre class="programlisting">
-<span class="identifier">svg_color</span> <span class="identifier">my_color</span> <span class="special">=</span> <span class="identifier">red</span><span class="special">;</span>
+<span class="identifier">svg_color</span> <span class="identifier">my_color</span> <span class="special">=</span> <span class="identifier">red</span><span class="special">;</span>
 </pre>
 <p>
- does not have the desired effect, and nor does <code class="computeroutput"><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">red</span> <span class="special">&lt;&lt;</span> <span class="identifier">endl</span><span class="special">;</span></code> output the expected RGB(255,0,0) but instead
+ does not have the desired effect, and nor does <code class="computeroutput"><span class="identifier">cout</span>
+ <span class="special">&lt;&lt;</span> <span class="identifier">red</span>
+ <span class="special">&lt;&lt;</span> <span class="identifier">endl</span><span class="special">;</span></code> output the expected RGB(255,0,0) but instead
         119 the value of the enum!
       </p>
 </td></tr>
 </table></div>
 <a name="svg_plot.color._code__phrase_role__identifier__svg_color__phrase___code__interface"></a><h5>
-<a name="id385821"></a>
- <code class="computeroutput"><span class="identifier">svg_color</span></code> interface
+<a name="id678342"></a>
+ svg_color interface
     </h5>
 <p>
       You can define a <code class="computeroutput"><span class="identifier">svg_color</span></code>
@@ -107,7 +114,7 @@
 </pre>
 <div class="important"><table border="0" summary="Important">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../images/important.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../../../../trunk/doc/html/images/important.png"></td>
 <th align="left">Important</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -116,8 +123,9 @@
       </p></td></tr>
 </table></div>
 <a name="svg_plot.color.example_of_using__code__phrase_role__identifier__svg_color__phrase___code_"></a><h5>
-<a name="id385937"></a>
- Example of using <code class="computeroutput"><span class="identifier">svg_color</span></code>
+<a name="id678494"></a>
+ <a href="color.html#svg_plot.color.example_of_using__code__phrase_role__identifier__svg_color__phrase___code_">Example
+ of using <code class="computeroutput"><span class="identifier">svg_color</span></code></a>
     </h5>
 <pre class="programlisting">
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -129,7 +137,7 @@
 </pre>
 <div class="note"><table border="0" summary="Note">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../../../trunk/doc/html/images/note.png"></td>
 <th align="left">Note</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -140,9 +148,11 @@
         and max.
       </p></td></tr>
 </table></div>
-<p>
- [heading Colors Internals and Rationale]
- </p>
+<a name="svg_plot.color.colors_internals_and_rationale"></a><h4>
+<a name="id678730"></a>
+ <a href="color.html#svg_plot.color.colors_internals_and_rationale">Colors Internals
+ and Rationale</a>
+ </h4>
 <p>
       Constants are defined in an enum, <code class="computeroutput"><span class="identifier">svg_color_constant</span></code>,
       in alphabetical order. <a href="../..%5C..%5C..%5C..%5Cboost%5Csvg_plot%5Csvg_color.hpp" target="_top">color
@@ -161,11 +171,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="todo.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="svg_tutorial.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="todo.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_tutorial.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/howtouse.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/howtouse.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/howtouse.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,31 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>How To Use This Documentation</title>
+<title> How To Use This Documentation</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
 <link rel="prev" href="../index.html" title="SVG_Plot">
-<link rel="next" href="todo.html" title="To Do List">
+<link rel="next" href="todo.html" title=" To Do List">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../index.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="todo.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="todo.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.howtouse"></a> How To Use This Documentation</h2></div></div></div>
+<a name="svg_plot.howtouse"></a> How To Use This Documentation
+</h2></div></div></div>
 <div class="itemizedlist"><ul type="disc">
 <li>
         Tutorial pages are intended for those who do not know how to use the program.
@@ -56,12 +57,13 @@
         Boost development list, or email me at jakevoytko (at) gmail (dot) com
       </li>
 </ul></div>
-<p>
- [heading Admonishments]
- </p>
+<a name="svg_plot.howtouse.admonishments"></a><h4>
+<a name="id667019"></a>
+ Admonishments
+ </h4>
 <div class="note"><table border="0" summary="Note">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../../../trunk/doc/html/images/note.png"></td>
 <th align="left">Note</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -70,7 +72,7 @@
 </table></div>
 <div class="tip"><table border="0" summary="Tip">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="../images/tip.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="../../../../../../../../../trunk/doc/html/images/tip.png"></td>
 <th align="left">Tip</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -79,7 +81,7 @@
 </table></div>
 <div class="important"><table border="0" summary="Important">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../images/important.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../../../../trunk/doc/html/images/important.png"></td>
 <th align="left">Important</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -90,7 +92,7 @@
 </table></div>
 <div class="warning"><table border="0" summary="Warning">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../images/warning.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../../../../../../../../trunk/doc/html/images/warning.png"></td>
 <th align="left">Warning</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -103,7 +105,7 @@
     </p>
 <div class="important"><table border="0" summary="Important">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../images/important.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../../../../trunk/doc/html/images/important.png"></td>
 <th align="left">Important</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -111,11 +113,15 @@
         project</a> whose mentor organization is Boost.
       </p></td></tr>
 </table></div>
-<p>
- [heading Preface] Humans have a fantastic capacity for visual understanding,
- and merely looking at data organized in one, two, or three dimensions allows
- us to see relations not otherwise visible in a list of numbers. Computers,
- however, deal with information numerically, and C++ and the <a href="http://en.wikipedia.org/wiki/Standard_Template_Library" target="_top">Standard
+<a name="svg_plot.howtouse.preface"></a><h4>
+<a name="id667101"></a>
+ Preface
+ </h4>
+<p>
+ Humans have a fantastic capacity for visual understanding, and merely looking
+ at data organized in one, two, or three dimensions allows us to see relations
+ not otherwise visible in a list of numbers. Computers, however, deal with information
+ numerically, and C++ and the <a href="http://en.wikipedia.org/wiki/Standard_Template_Library" target="_top">Standard
       Template Library (STL)</a> do not currently offer a way to bridge the gap.
       This library helps the user to easily plot data stored in STL containers.
     </p>
@@ -163,7 +169,7 @@
 </ul></div>
 <div class="note"><table border="0" summary="Note">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../../../trunk/doc/html/images/note.png"></td>
 <th align="left">Note</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -173,11 +179,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../index.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="todo.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="todo.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,47 +1,52 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Public Interfaces</title>
+<title> Public Interfaces</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="plot_defaults/2d_defaults.html" title="svg_2d_plot Defaults">
-<link rel="next" href="interface/svg_interface.html" title="svg Public Interface">
+<link rel="prev" href="plot_defaults/2d_defaults.html" title=" svg_2d_plot
+ Defaults">
+<link rel="next" href="interface/svg_interface.html" title=" svg
+ Public Interface">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="plot_defaults/2d_defaults.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="interface/svg_interface.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="plot_defaults/2d_defaults.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="interface/svg_interface.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.interface"></a> Public Interfaces</h2></div></div></div>
+<a name="svg_plot.interface"></a> Public Interfaces
+</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"> svg Public Interface</span></dt>
-<dt><span class="section"><a href="interface/svg_1d_plot_interface.html"> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code> Public
- Interface</a></span></dt>
-<dt><span class="section"><a href="interface/svg_2d_plot_interface.html"> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code> Public
- Interface</a></span></dt>
-<dt><span class="section"><a href="interface/svg_boxplot_interface.html"> <code class="computeroutput"><span class="identifier">svg_boxplot</span></code> Public
- Interface</a></span></dt>
+<dt><span class="section"><a href="interface/svg_interface.html"> <code class="computeroutput"><span class="identifier">svg</span></code>
+ Public Interface</a></span></dt>
+<dt><span class="section"> svg_1d_plot Public Interface</span></dt>
+<dt><span class="section"> svg_2d_plot Public Interface</span></dt>
+<dt><span class="section"> svg_boxplot Public Interface</span></dt>
 </dl></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="plot_defaults/2d_defaults.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="interface/svg_interface.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="plot_defaults/2d_defaults.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="interface/svg_interface.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_1d_plot_interface.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_1d_plot_interface.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_1d_plot_interface.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,362 +1,771 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg_1d_plot Public Interface</title>
+<title> svg_1d_plot Public Interface</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../interface.html" title="Public Interfaces">
-<link rel="prev" href="svg_interface.html" title="svg Public Interface">
-<link rel="next" href="svg_2d_plot_interface.html" title="svg_2d_plot Public Interface">
+<link rel="up" href="../interface.html" title=" Public Interfaces">
+<link rel="prev" href="svg_interface.html" title=" svg
+ Public Interface">
+<link rel="next" href="svg_2d_plot_interface.html" title=" svg_2d_plot Public Interface">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_2d_plot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_2d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.interface.svg_1d_plot_interface"></a> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code> Public
- Interface</h3></div></div></div>
-<div class="informaltable">
-<h5>
-<a name="id399305"></a>
- <span class="table-title">1D_plot Miscellaneous Functions</span>
- </h5>
-<table class="table">
+<a name="svg_plot.interface.svg_1d_plot_interface"></a> svg_1d_plot Public Interface
+</h3></div></div></div>
+<div class="table">
+<a name="id695552"></a><p class="title"><b>Table 7. 1D_plot Miscellaneous Functions</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Miscellaneous Functions">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">()</span></code></td>
-<td>See the defaults section
- for further details</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the size of the
- image produced (pixels)</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the precision output
- for coordinates (decimal digits, default 3).</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">document_title</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Sets title for the SVG
- XML document (not the plot). &lt;title&gt;My Document title&lt;/title&gt;</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">description</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Sets description for
- the SVG XML document, as comment and XML, for example: &lt;!-- My Document
- description --&gt; &lt;desc&gt;My Document description&lt;/desc&gt;</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the font size for the legend title.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the string to be used for the title.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the font size for the title.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">write</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Writes
- the plot to the file passed as a parameter.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">write</span><span class="special">(</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code></td>
-<td>Writes the plot
- to a stream passed as a parameter.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ See the defaults section for further details
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span>
+ <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the size of the image produced (pixels)
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the precision output for coordinates (decimal digits, default
+ 3).
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">document_title</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets title for the SVG XML document (not the plot). &lt;title&gt;My
+ Document title&lt;/title&gt;
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">description</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets description for the SVG XML document, as comment and XML, for
+ example: &lt;!-- My Document description --&gt; &lt;desc&gt;My Document
+ description&lt;/desc&gt;
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the font size for the legend title.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the string to be used for the title.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the font size for the title.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">write</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Writes the plot to the file passed as a parameter.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">write</span><span class="special">(</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Writes the plot to a stream passed as a parameter.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id399806"></a>
- <span class="table-title">1D_plot Commands</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id696238"></a><p class="title"><b>Table 8. 1D_plot Commands</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Commands">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the axis
- is on (true) or off.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the legend
- is on (true) or off.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">plot_window_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the plot
- will be displayed in its own window, or will be "full screen"
- in the image.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the image title is displayed.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the X-axis is displayed.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_external_style_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the axis is inside or outside of the plot. Defaults is <code class="computeroutput"><span class="keyword">false</span></code>.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether or not
- the X-axis label will show</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>sets whether or not
- the major ticks will be labelled on the X-axis</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the major grid on the X axis will be displayed.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the minor grid on the X axis will be displayed.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">y_axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the Y axis is displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the axis is on (true) or off.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the legend is on (true) or off.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">plot_window_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the plot will be displayed in its own window, or will
+ be "full screen" in the image.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the image title is displayed.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the X-axis is displayed.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_external_style_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the axis is inside or outside of the plot.
+ Defaults is <code class="computeroutput"><span class="keyword">false</span></code>.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the X-axis label will show
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ sets whether or not the major ticks will be labelled on the X-axis
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the major grid on the X axis will be displayed.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the minor grid on the X axis will be displayed.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the Y axis is displayed.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id400297"></a>
- <span class="table-title">1D_plot Colors</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id696927"></a><p class="title"><b>Table 9. 1D_plot Colors</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Colors">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background color for the whole image.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the color of the plot area. Note: this only goes into effect if plot_area(true)
- has been called.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the title color.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the lines that form the axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the labels that go along the X axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the grid that runs perpindicular to the X axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the major ticks of the x-axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the minor grid of the x-axis</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the minor ticks of the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background color for the whole image.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the color of the plot area. Note: this only goes into effect if
+ plot_area(true) has been called.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the title color.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the lines that form the axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the labels that go along the X axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the grid that runs perpindicular to the X axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the major ticks of the x-axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the minor grid of the x-axis
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the minor ticks of the x-axis.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id401042"></a>
- <span class="table-title">1D_plot X-Axis Definition</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id697913"></a><p class="title"><b>Table 10. 1D_plot X-Axis Definition</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot X-Axis Definition">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the stroke width of the x-axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the label of the x-axis. This does not guarantee that it will be shown.
- You must call <code class="computeroutput"><span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code></td>
-<td>Sets the distance (in
- Cartesian units) between ticks on the x-axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the x-axis major ticks.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the major ticks on the x-axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the x-axis minor tick lengths.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the minor ticks on the x-axis.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the number of minor
- ticks between each major tick.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span> <span class="identifier">x_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">)</span></code></td>
-<td>Sets the scale of the
- x axis from x1 to x2. Throws an exception if x2&lt;=x1. </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the stroke width of the x-axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the label of the x-axis. This does not guarantee that it will
+ be shown. You must call <code class="computeroutput"><span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the distance (in Cartesian units) between ticks on the x-axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the x-axis major ticks.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the major ticks on the x-axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the x-axis minor tick lengths.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the minor ticks on the x-axis.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the number of minor ticks between each major tick.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_1d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the scale of the x axis from x1 to x2. Throws an exception if
+ x2&lt;=x1.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
+<br class="table-break"><a name="svg_plot.interface.svg_1d_plot_interface.the_1d_plot__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method"></a><h5>
+<a name="id698577"></a>
+ <a href="svg_1d_plot_interface.html#svg_plot.interface.svg_1d_plot_interface.the_1d_plot__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method">The
+ 1D_plot <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
+ Method</a>
+ </h5>
 <p>
- [heading The 1D_plot <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code> Method] The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code> method is defined using Boost.Parameter.
- As such, it supports a few extra named parameters, as well as a deduced parameter.
+ The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
+ method is defined using Boost.Parameter. As such, it supports a few extra
+ named parameters, as well as a deduced parameter.
       </p>
-<div class="informaltable">
-<h5>
-<a name="id401551"></a>
- <span class="table-title">1D_plot Required parameter</span>
- </h5>
-<table class="table">
+<div class="table">
+<a name="id698635"></a><p class="title"><b>Table 11. 1D_plot Required parameter</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Required parameter">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type (* is a wildcard)</th>
-<th>Description</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type (* is a wildcard)
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>_container</td>
-<td>*</td>
-<td>Any object that can
- return an iterator with begin() and end()</td>
-</tr>
-<tr>
-<td>_title</td>
-<td><code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code></td>
-<td>The
- name of this data series.</td>
+<td>
+ <p>
+ _container
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ Any object that can return an iterator with begin() and end()
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _title
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The name of this data series.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id401630"></a>
- <span class="table-title">1D_plot Deduced parameter</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id698757"></a><p class="title"><b>Table 12. 1D_plot Deduced parameter</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Deduced parameter">
 <colgroup>
 <col>
 <col>
@@ -364,27 +773,55 @@
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type</th>
-<th>Description</th>
-<th>Default</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Default
+ </p>
+ </th>
 </tr></thead>
 <tbody><tr>
-<td>_fill_color</td>
-<td><code class="computeroutput"><span class="identifier">svg_color</span></code></td>
-<td>Color
- that shows <span class="bold"><strong>inside the circle</strong></span> being
- drawn.</td>
-<td>white</td>
+<td>
+ <p>
+ _fill_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_color</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Color that shows <span class="bold"><strong>inside the circle</strong></span>
+ being drawn.
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
 </tr></tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id401698"></a>
- <span class="table-title">1D_plot Optional Parameters</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id698863"></a><p class="title"><b>Table 13. 1D_plot Optional Parameters</b></p>
+<div class="table-contents"><table class="table" summary="1D_plot Optional Parameters">
 <colgroup>
 <col>
 <col>
@@ -392,73 +829,151 @@
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type</th>
-<th>Description</th>
-<th>Default</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Default
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>_stroke_color</td>
-<td><code class="computeroutput"><span class="identifier">svg_color</span></code></td>
-<td>Outline
- of the circle that is being drawn.</td>
-<td>black</td>
-</tr>
-<tr>
-<td>_point_style</td>
-<td><code class="computeroutput"><span class="identifier">point_shape</span></code></td>
-<td>Shape
- of the point. Options currently are: <code class="literal">none</code>, <code class="literal">circle</code>,
- and <code class="literal">square</code>.</td>
-<td>circle</td>
-</tr>
-<tr>
-<td>_size</td>
-<td><code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span></code></td>
-<td>Height/width of the
- circle and square.</td>
-<td>10</td>
-</tr>
-<tr>
-<td>_x_functor</td>
-<td>*</td>
-<td>A class or functor
- that contains a conversion function. You will not have to worry about
- this, unless you are trying to plot a container of type that does not
- have a conversion to double, for example, age of a user-defined type
- <code class="computeroutput"><span class="identifier">humans</span></code>. For example:
-
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting">
-<span class="keyword">class</span> <span class="identifier">my_functor</span>
+<td>
+ <p>
+ _stroke_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_color</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Outline of the circle that is being drawn.
+ </p>
+ </td>
+<td>
+ <p>
+ black
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _point_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">point_shape</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Shape of the point. Options currently are: <code class="literal">none</code>,
+ <code class="literal">circle</code>, and <code class="literal">square</code>.
+ </p>
+ </td>
+<td>
+ <p>
+ circle
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Height/width of the circle and square.
+ </p>
+ </td>
+<td>
+ <p>
+ 10
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _x_functor
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ A class or functor that contains a conversion function. You will not
+ have to worry about this, unless you are trying to plot a container
+ of type that does not have a conversion to double, for example, age
+ of a user-defined type <code class="computeroutput"><span class="identifier">humans</span></code>.
+ For example:
+</p>
+<pre class="programlisting">
+<span class="keyword">class</span> <span class="identifier">my_functor</span>
 <span class="special">{</span>
- <span class="identifier">typdef</span> <span class="keyword">double</span> <span class="identifier">result_type</span><span class="special">;</span>
+ <span class="identifier">typdef</span> <span class="keyword">double</span> <span class="identifier">result_type</span><span class="special">;</span>
 
- <span class="keyword">double</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">_hum</span><span class="special">)</span>
+ <span class="keyword">double</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">_hum</span><span class="special">)</span>
   <span class="special">{</span>
- <span class="keyword">return</span> <span class="special">(</span><span class="keyword">double</span><span class="special">)(</span><span class="identifier">_hum</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
+ <span class="keyword">return</span> <span class="special">(</span><span class="keyword">double</span><span class="special">)(</span><span class="identifier">_hum</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
   <span class="special">}</span>
 <span class="special">}</span>
 
 <span class="comment">// ...
 </span>
-<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_plot</span><span class="special">,</span> <span class="identifier">my_data</span><span class="special">,</span> <span class="string">"Lions"</span><span class="special">,</span> <span class="identifier">_x_functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
+<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_plot</span><span class="special">,</span> <span class="identifier">my_data</span><span class="special">,</span> <span class="string">"Lions"</span><span class="special">,</span> <span class="identifier">_x_functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
 </pre>
- </td>
-<td> <code class="computeroutput"><span class="identifier">boost_default_convert</span></code>
+<p>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">boost_default_convert</span></code>
               is sufficient in all cases where the data stored in the container can
- be directly cast to a <code class="computeroutput"><span class="keyword">double</span></code>.</td>
+ be directly cast to a <code class="computeroutput"><span class="keyword">double</span></code>.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<p>
+<br class="table-break"><p>
         Here are some examples of using of the 1D_plot <code class="computeroutput"><span class="identifier">plot</span></code>
         method:
       </p>
 <a name="svg_plot.interface.svg_1d_plot_interface.using_1d_plot_fill_and_stroke_colors"></a><h5>
-<a name="id402096"></a>
- Using 1D_plot fill and stroke colors
+<a name="id699416"></a>
+ <a href="svg_1d_plot_interface.html#svg_plot.interface.svg_1d_plot_interface.using_1d_plot_fill_and_stroke_colors">Using
+ 1D_plot fill and stroke colors</a>
       </h5>
 <pre class="programlisting">
 <span class="identifier">my_plot</span><span class="special">.</span><span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_data</span><span class="special">,</span> <span class="string">"Lions"</span><span class="special">,</span>
@@ -488,11 +1003,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_2d_plot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_2d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_2d_plot_interface.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_2d_plot_interface.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_2d_plot_interface.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,420 +1,915 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg_2d_plot Public Interface</title>
+<title> svg_2d_plot Public Interface</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../interface.html" title="Public Interfaces">
-<link rel="prev" href="svg_1d_plot_interface.html" title="svg_1d_plot Public Interface">
-<link rel="next" href="svg_boxplot_interface.html" title="svg_boxplot Public Interface">
+<link rel="up" href="../interface.html" title=" Public Interfaces">
+<link rel="prev" href="svg_1d_plot_interface.html" title=" svg_1d_plot Public Interface">
+<link rel="next" href="svg_boxplot_interface.html" title=" svg_boxplot Public Interface">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_1d_plot_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_1d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.interface.svg_2d_plot_interface"></a> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code> Public
- Interface</h3></div></div></div>
-<div class="informaltable">
-<h5>
-<a name="id402384"></a>
- <span class="table-title">2D_plot Miscellaneous</span>
- </h5>
-<table class="table">
+<a name="svg_plot.interface.svg_2d_plot_interface"></a> svg_2d_plot Public Interface
+</h3></div></div></div>
+<div class="table">
+<a name="id699767"></a><p class="title"><b>Table 14. 2D_plot Miscellaneous</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Miscellaneous">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">()</span></code></td>
-<td>See the defaults section
- for further details.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ See the defaults section for further details.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the size (pixels)
- of the plot image produced.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span>
+ <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the size (pixels) of the plot image produced.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the string to be used for the title.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the string to be used for the title.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the font size for the title.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the font size for the title.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the font size for the legend title.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_title_font_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the font size for the legend title.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id402651"></a>
- <span class="table-title">2D_plot Commands</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id700124"></a><p class="title"><b>Table 15. 2D_plot Commands</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Commands">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the axis
- is on (true) or off.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">axis_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the axis is on (true) or off.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the legend
- is on (true) or off.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the legend is on (true) or off.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">plot_window_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether the plot
- will be displayed in its own window, or will be "full screen"
- in the image.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">plot_window_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether the plot will be displayed in its own window, or will
+ be "full screen" in the image.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the image title is displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the image title is displayed.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether or not
- the X axis label will show.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the X axis label will show.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the major grid on the X axis will be displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the major grid on the X axis will be displayed.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>sets whether or not
- the major ticks will be labelled on the x axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ sets whether or not the major ticks will be labelled on the x axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the minor grid on the X axis will be displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the minor grid on the X axis will be displayed.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether or not
- the Y axis label will show.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the Y axis label will show.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the major grid on the Y axis will be displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the major grid on the Y axis will be displayed.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>sets whether or not
- the major ticks will be labelled on the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ sets whether or not the major ticks will be labelled on the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the minor grid on the Y axis will be displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_grid_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the minor grid on the Y axis will be displayed.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id403172"></a>
- <span class="table-title">2D_plot Colors</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id700859"></a><p class="title"><b>Table 16. 2D_plot Colors</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Colors">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the plot title color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the plot title color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background color for the whole image.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background color for the whole image.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">legend_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">legend_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the color of the plot area. Note: this only goes into effect if plot_area(true)
- has been called.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the color of the plot area. Note: this only goes into effect if
+ plot_area(true) has been called.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the lines that form the axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the lines that form the axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the labels that go along the X axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the labels that go along the X axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the major ticks of the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the major ticks of the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the grid that runs perpindicular to the X axis</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the grid that runs perpindicular to the X axis
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the minor ticks of the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the minor ticks of the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the lines that form the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_axis_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the lines that form the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the labels that go along the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the labels that go along the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the major ticks of the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the major ticks of the Y-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the grid that runs perpindicular to the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_grid_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the grid that runs perpindicular to the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the minor ticks of the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the minor ticks of the Y-axis.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id404144"></a>
- <span class="table-title">2D_plot Axis Information</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id702148"></a><p class="title"><b>Table 17. 2D_plot Axis Information</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Axis Information">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the stroke width (pixels) of the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the stroke width (pixels) of the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the label of the x-axis. You must set <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display the label.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the label of the x-axis. You must set <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display the label.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code></td>
-<td>Sets the distance (Cartesian
- units) between ticks on the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the distance (Cartesian units) between ticks on the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the x-axis major ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the x-axis major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the major ticks on the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the major ticks on the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the length (pixels) of the x-axis minor ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the x-axis minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the x-axis minor tick lengths.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the x-axis minor tick lengths.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the minor ticks on the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the minor ticks on the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the number of minor
- ticks between each major tick.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the number of minor ticks between each major tick.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">x_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">)</span></code></td>
-<td>Sets the scale of the
- x axis from x1 to x2. Throws an exception if x2 &lt;= x1.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">x_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the scale of the x axis from x1 to x2. Throws an exception if
+ x2 &lt;= x1.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the stroke width of the x-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_axis_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the stroke width of the x-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the label of the Y-axis. You must set <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display the label.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the label of the Y-axis. You must set <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code> to display the label.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code></td>
-<td>Sets the distance (in
- Cartesian units) between ticks on the Y axis</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the distance (in Cartesian units) between ticks on the Y axis
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the Y axis major ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y axis major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the major ticks on the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the major ticks on the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the length (pixels) of the Y axis minor ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y axis minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the Y axis minor tick lengths.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y axis minor tick lengths.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the minor ticks on the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the minor ticks on the Y axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the number of minor
- ticks between each major tick.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the number of minor ticks between each major tick.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span> <span class="identifier">y_scale</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code></td>
-<td>Sets the scale of the
- Y axis from y1 to y2. Throws an exception if y2 &lt;= y1.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_2d_plot</span><span class="special">&amp;</span>
+ <span class="identifier">y_scale</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the scale of the Y axis from y1 to y2. Throws an exception if
+ y2 &lt;= y1.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<p>
+<br class="table-break"><p>
         (Note: Getters omitted for now. TODO)
       </p>
+<a name="svg_plot.interface.svg_2d_plot_interface.the__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method"></a><h5>
+<a name="id703548"></a>
+ <a href="svg_2d_plot_interface.html#svg_plot.interface.svg_2d_plot_interface.the__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method">The
+ <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
+ Method</a>
+ </h5>
 <p>
- [heading The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
- Method] The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
+ The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
         method is defined using Boost.Parameter. As such, it supports a few extra
         named parameters, as well as a deduced parameter.
       </p>
-<div class="informaltable">
-<h5>
-<a name="id405188"></a>
- <span class="table-title">2D_plot Required parameter</span>
- </h5>
-<table class="table">
+<div class="table">
+<a name="id703608"></a><p class="title"><b>Table 18. 2D_plot Required parameter</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Required parameter">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type (* is a wildcard)</th>
-<th>Description</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type (* is a wildcard)
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>_container</td>
-<td>*</td>
-<td>Any object that can
- return an iterator with begin() and end()</td>
+<td>
+ <p>
+ _container
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ Any object that can return an iterator with begin() and end()
+ </p>
+ </td>
 </tr>
 <tr>
-<td>_title</td>
-<td><code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code></td>
-<td>The
- name of this series</td>
+<td>
+ <p>
+ _title
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The name of this series
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id405266"></a>
- <span class="table-title">2D_plot Deduced parameter</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id703730"></a><p class="title"><b>Table 19. 2D_plot Deduced parameter</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Deduced parameter">
 <colgroup>
 <col>
 <col>
@@ -422,26 +917,55 @@
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type</th>
-<th>Description</th>
-<th>Default</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Default
+ </p>
+ </th>
 </tr></thead>
 <tbody><tr>
-<td>_fill_color</td>
-<td><code class="computeroutput"><span class="identifier">svg_color</span></code></td>
-<td>This
- is the color that shows up inside of the circle that is being drawn</td>
-<td>white</td>
+<td>
+ <p>
+ _fill_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_color</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is the color that shows up inside of the circle that is being
+ drawn
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
 </tr></tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id405329"></a>
- <span class="table-title">2D_plot Optional Parameters</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id703830"></a><p class="title"><b>Table 20. 2D_plot Optional Parameters</b></p>
+<div class="table-contents"><table class="table" summary="2D_plot Optional Parameters">
 <colgroup>
 <col>
 <col>
@@ -449,105 +973,235 @@
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type</th>
-<th>Description</th>
-<th>Default</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Default
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>_bezier_on</td>
-<td><code class="computeroutput"><span class="keyword">bool</span></code></td>
 <td>
+ <p>
+ _bezier_on
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">bool</span></code>
+ </p>
+ </td>
+<td>
+ <p>
               This determines whether or not Bézier curve interpolation will be
               applied to the plot lines. It is important to note that the curve interpolation
               is still in its infancy, and should only be used with reasonably nice
- data sets</td>
+ data sets
+ </p>
+ </td>
 <td class="auto-generated"> </td>
 </tr>
 <tr>
-<td>_line_on</td>
-<td><code class="computeroutput"><span class="keyword">bool</span></code></td>
 <td>
- This determines whether or not there are lines drawn between data points.</td>
-<td>false</td>
+ <p>
+ _line_on
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">bool</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This determines whether or not there are lines drawn between data points.
+ </p>
+ </td>
+<td>
+ <p>
+ false
+ </p>
+ </td>
 </tr>
 <tr>
-<td>_line_color</td>
-<td><code class="computeroutput"><span class="keyword">bool</span></code></td>
 <td>
- This determines the color of the lines between data points.</td>
-<td>black
- </td>
+ <p>
+ _line_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">bool</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This determines the color of the lines between data points.
+ </p>
+ </td>
+<td>
+ <p>
+ black
+ </p>
+ </td>
 </tr>
 <tr>
-<td>_area_fill_color</td>
-<td><code class="computeroutput"><span class="identifier">svg_color</span></code></td>
-<td>Defining
- this enables the "Fill Area Under Axis" feature. the color
- you define will be the fill color between a line and the area under
- the axis. This only takes effect if <code class="computeroutput"><span class="identifier">_line_on</span> <span class="special">=</span> <span class="keyword">true</span></code>
- is called.</td>
+<td>
+ <p>
+ _area_fill_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_color</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Defining this enables the "Fill Area Under Axis" feature.
+ the color you define will be the fill color between a line and the
+ area under the axis. This only takes effect if <code class="computeroutput"><span class="identifier">_line_on</span>
+ <span class="special">=</span> <span class="keyword">true</span></code>
+ is called.
+ </p>
+ </td>
 <td class="auto-generated"> </td>
 </tr>
 <tr>
-<td>_stroke_color</td>
-<td><code class="computeroutput"><span class="identifier">svg_color</span></code></td>
-<td>The
- outline of the circle that is being drawn.</td>
-<td>black</td>
-</tr>
-<tr>
-<td>_point_style</td>
-<td><code class="computeroutput"><span class="identifier">point_shape</span></code></td>
-<td>This
- is the shape of the point. Options currently are between <code class="literal">none</code>,
- <code class="literal">circle</code>, and <code class="literal">square</code>.</td>
-<td>circle</td>
-</tr>
-<tr>
-<td>_size</td>
-<td><code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span></code></td>
-<td>This is the height/width
- of the circle and square.</td>
-<td>10</td>
-</tr>
-<tr>
-<td>_x_functor</td>
-<td>*</td>
-<td>A class or that contains
- a conversion function. You will not have to worry about this, unless
- you are trying to accomplish stuff like plotting a vector of humans.
- For example:
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting">
-<span class="keyword">class</span> <span class="identifier">my_functor</span>
+<td>
+ <p>
+ _stroke_color
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_color</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The outline of the circle that is being drawn.
+ </p>
+ </td>
+<td>
+ <p>
+ black
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _point_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">point_shape</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is the shape of the point. Options currently are between <code class="literal">none</code>,
+ <code class="literal">circle</code>, and <code class="literal">square</code>.
+ </p>
+ </td>
+<td>
+ <p>
+ circle
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is the height/width of the circle and square.
+ </p>
+ </td>
+<td>
+ <p>
+ 10
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ _x_functor
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ A class or that contains a conversion function. You will not have to
+ worry about this, unless you are trying to accomplish stuff like plotting
+ a vector of humans. For example:
+</p>
+<pre class="programlisting">
+<span class="keyword">class</span> <span class="identifier">my_functor</span>
 <span class="special">{</span>
- <span class="identifier">typdef</span> <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;</span> <span class="identifier">result_type</span><span class="special">;</span>
+ <span class="identifier">typdef</span> <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;</span> <span class="identifier">result_type</span><span class="special">;</span>
 
- <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">_hum</span><span class="special">)</span> <span class="keyword">const</span>
+ <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">_hum</span><span class="special">)</span> <span class="keyword">const</span>
   <span class="special">{</span>
- <span class="keyword">return</span> <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;(</span><span class="identifier">i</span><span class="special">,</span> <span class="identifier">_hum</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
+ <span class="keyword">return</span> <span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">,</span> <span class="keyword">double</span><span class="special">&gt;(</span><span class="identifier">i</span><span class="special">,</span> <span class="identifier">_hum</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
   <span class="special">}</span>
 <span class="special">}</span>
 
 <span class="comment">// snip
 </span>
-<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_plot</span><span class="special">,</span> <span class="identifier">my_data</span><span class="special">,</span> <span class="string">"People"</span><span class="special">,</span> <span class="identifier">_x_functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
+<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_plot</span><span class="special">,</span> <span class="identifier">my_data</span><span class="special">,</span> <span class="string">"People"</span><span class="special">,</span> <span class="identifier">_x_functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
 </pre>
- </td>
-<td> <code class="computeroutput"><span class="identifier">boost_default_2d_convert</span></code>
+<p>
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">boost_default_2d_convert</span></code>
               (the default) is sufficient in all cases where the data stored in the
- container can be directly cast to a double.</td>
+ container can be directly cast to a double.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<p>
+<br class="table-break"><p>
         Here are some examples of correct uses:
       </p>
 <a name="svg_plot.interface.svg_2d_plot_interface.using_fill_and_stroke_colors"></a><h4>
-<a name="id405885"></a>
- Using fill and stroke colors
+<a name="id704635"></a>
+ <a href="svg_2d_plot_interface.html#svg_plot.interface.svg_2d_plot_interface.using_fill_and_stroke_colors">Using
+ fill and stroke colors</a>
       </h4>
 <pre class="programlisting">
 <span class="identifier">my_plot</span><span class="special">.(</span><span class="identifier">my_data</span><span class="special">,</span> <span class="string">"Lions"</span><span class="special">,</span>
@@ -576,11 +1230,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_1d_plot_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_1d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_boxplot_interface.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_boxplot_interface.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_boxplot_interface.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,307 +1,607 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg_boxplot Public Interface</title>
+<title> svg_boxplot Public Interface</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../interface.html" title="Public Interfaces">
-<link rel="prev" href="svg_2d_plot_interface.html" title="svg_2d_plot Public Interface">
-<link rel="next" href="../implementation.html" title="Implementation &amp; Rationale">
+<link rel="up" href="../interface.html" title=" Public Interfaces">
+<link rel="prev" href="svg_2d_plot_interface.html" title=" svg_2d_plot Public Interface">
+<link rel="next" href="../implementation.html" title=" Implementation &amp; Rationale">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_2d_plot_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../implementation.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_2d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../implementation.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.interface.svg_boxplot_interface"></a> <code class="computeroutput"><span class="identifier">svg_boxplot</span></code> Public
- Interface</h3></div></div></div>
-<div class="informaltable">
-<h5>
-<a name="id406155"></a>
- <span class="table-title">Boxplot Miscellaneous</span>
- </h5>
-<table class="table">
+<a name="svg_plot.interface.svg_boxplot_interface"></a> svg_boxplot Public Interface
+</h3></div></div></div>
+<div class="table">
+<a name="id704963"></a><p class="title"><b>Table 21. Boxplot Miscellaneous</b></p>
+<div class="table-contents"><table class="table" summary="Boxplot Miscellaneous">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">()</span></code></td>
-<td>See the defaults section
- for further details.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ See the defaults section for further details.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the size (pixels)
- of the plot image produced.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span>
+ <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the size (pixels) of the plot image produced.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the string to be used for the plot title.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the string to be used for the plot title.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">title_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the font size for the plot title.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">title_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the font size for the plot title.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id406376"></a>
- <span class="table-title">Boxplot Commands</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id705257"></a><p class="title"><b>Table 22. Boxplot Commands</b></p>
+<div class="table-contents"><table class="table" summary="Boxplot Commands">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Determines whether or
- not the image title is displayed.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">title_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Determines whether or not the image title is displayed.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether or not
- the X-axis label will show.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the X-axis label will show.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>sets whether or not
- the major ticks will be labelled on the x axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ sets whether or not the major ticks will be labelled on the x axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>Sets whether or not
- the Y-axis label will show.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the Y-axis label will show.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code></td>
-<td>sets whether or not
- the major ticks will be labelled on the Y axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_labels_on</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ sets whether or not the major ticks will be labelled on the Y axis.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id406614"></a>
- <span class="table-title">Boxplot Colors</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id705587"></a><p class="title"><b>Table 23. Boxplot Colors</b></p>
+<div class="table-contents"><table class="table" summary="Boxplot Colors">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the title color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">title_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the title color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background color for the whole image.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background color for the whole image.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
- an RGB color.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">background_border_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the background border color for the legend as <code class="computeroutput"><span class="identifier">col</span></code>,
+ an RGB color.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Set
- the color of the plot area. Note: this only goes into effect if plot_area(true)
- has been called.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">plot_background_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set the color of the plot area. Note: this only goes into effect if
+ plot_area(true) has been called.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the labels that go along the X-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the labels that go along the X-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the major ticks of the X-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the major ticks of the X-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the labels that go along the X-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the labels that go along the X-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the major ticks of the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the major ticks of the Y-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span> <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code></td>
-<td>Sets
- the color of the minor ticks of the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_tick_color</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">svg_color</span>
+ <span class="special">&amp;</span><span class="identifier">col</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the color of the minor ticks of the Y-axis.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id407171"></a>
- <span class="table-title">Boxplot Axis Information</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id706319"></a><p class="title"><b>Table 24. Boxplot Axis Information</b></p>
+<div class="table-contents"><table class="table" summary="Boxplot Axis Information">
 <colgroup>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the label of the X-axis. It will be shown <span class="bold"><strong>only
- if</strong></span> <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code>.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the label of the X-axis. It will be shown <span class="bold"><strong>only
+ if</strong></span> <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code>.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the X-axis ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the X-axis ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">x_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the major ticks on the X-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">x_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the major ticks on the X-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Sets
- the label of the X-axis. It will be shown <span class="bold"><strong>only
- if</strong></span> <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code>.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_label</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the label of the X-axis. It will be shown <span class="bold"><strong>only
+ if</strong></span> <code class="computeroutput"><span class="identifier">x_label</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code>.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code></td>
-<td>Sets the distance (in
- Cartesian units) between ticks on the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_interval</span><span class="special">(</span><span class="keyword">double</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the distance (in Cartesian units) between ticks on the Y-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the Y-axis major ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y-axis major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the major ticks on the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the major ticks on the Y-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_num_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the length (pixels) of the Y-axis minor ticks.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_num_minor_tick</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y-axis minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the length (pixels)
- of the Y-axis minor tick lengths.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_major_tick_length</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the length (pixels) of the Y-axis minor tick lengths.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the width (pixels) of the minor ticks on the Y-axis.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_minor_tick_width</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width (pixels) of the minor ticks on the Y-axis.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the number of minor
- ticks between each major tick.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_num_minor_ticks</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the number of minor ticks between each major tick.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span> <span class="identifier">y_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code></td>
-<td>Sets the scale of the
- Y-axis from y1 to y2. Throws an exception if y2 &lt;= y1.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_boxplot</span><span class="special">&amp;</span>
+ <span class="identifier">y_range</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the scale of the Y-axis from y1 to y2. Throws an exception if
+ y2 &lt;= y1.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<p>
+<br class="table-break"><p>
         (Note: Getters omitted for now - TODO)
       </p>
-<p>
- [heading The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
- Method]
- </p>
+<a name="svg_plot.interface.svg_boxplot_interface.the__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method"></a><h5>
+<a name="id707221"></a>
+ <a href="svg_boxplot_interface.html#svg_plot.interface.svg_boxplot_interface.the__code__phrase_role__identifier__plot__phrase__phrase_role__special______phrase___code__method">The
+ <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
+ Method</a>
+ </h5>
 <p>
         The <code class="computeroutput"><span class="identifier">plot</span><span class="special">()</span></code>
         method is defined using Boost.Parameter. As such, it supports a few extra
         named parameters, as well as a deduced parameter.
       </p>
-<div class="informaltable">
-<h5>
-<a name="id407862"></a>
- <span class="table-title">Required parameter</span>
- </h5>
-<table class="table">
+<div class="table">
+<a name="id707281"></a><p class="title"><b>Table 25. Required parameter</b></p>
+<div class="table-contents"><table class="table" summary="Required parameter">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type (* is a wildcard)</th>
-<th>Description</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type (* is a wildcard)
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>ctr</td>
-<td>*</td>
-<td>Any object that can return
- an iterator with begin() and end().</td>
+<td>
+ <p>
+ ctr
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ Any object that can return an iterator with begin() and end().
+ </p>
+ </td>
 </tr>
 <tr>
-<td>name</td>
-<td><code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code></td>
-<td>The
- name of this data series.</td>
+<td>
+ <p>
+ name
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The name of this data series.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id407940"></a>
- <span class="table-title">Optional Parameters</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id707403"></a><p class="title"><b>Table 26. Optional Parameters</b></p>
+<div class="table-contents"><table class="table" summary="Optional Parameters">
 <colgroup>
 <col>
 <col>
@@ -309,119 +609,302 @@
 <col>
 </colgroup>
 <thead><tr>
-<th>ID</th>
-<th>Type</th>
-<th>Description</th>
-<th>Default</th>
+<th>
+ <p>
+ ID
+ </p>
+ </th>
+<th>
+ <p>
+ Type
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Default
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>box_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- the box of the boxplot.</td>
 <td>
-<code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code>.</td>
+ <p>
+ box_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles the box of the boxplot.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>median_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- the median of the boxplot.</td>
 <td>
-<code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code>.</td>
+ <p>
+ median_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles the median of the boxplot.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>axis_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- the data range line (the line going through the middle.</td>
 <td>
-<code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code>.</td>
+ <p>
+ axis_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles the data range line (the line going through the middle.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>min_whisker_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- the lower whisker.</td>
-<td><code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code></td>
+<td>
+ <p>
+ min_whisker_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles the lower whisker.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td>max_whisker_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- the upper whisker.</td>
-<td><code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code></td>
+<td>
+ <p>
+ max_whisker_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">svg_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles the upper whisker.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td>mild_outlier_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">plot_point_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- outliers within 3 Inter-Quartile Ranges (IQRs) of the edges of the
- box</td>
-<td><code class="computeroutput"><span class="identifier">plot_point_style</span><span class="special">(</span><span class="identifier">black</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">0</span><span class="special">)</span></code></td>
+<td>
+ <p>
+ mild_outlier_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">plot_point_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles outliers within 3 Inter-Quartile Ranges (IQRs) of the edges
+ of the box
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">plot_point_style</span><span class="special">(</span><span class="identifier">black</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">0</span><span class="special">)</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td>ext_outlier_style</td>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">plot_point_style</span><span class="special">&amp;</span></code></td>
-<td>Styles
- outliers more than 3 IQRs away from the box.</td>
-<td><code class="computeroutput"><span class="identifier">plot_point_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span> <span class="identifier">black</span><span class="special">,</span> <span class="number">1</span><span class="special">)</span></code></td>
+<td>
+ <p>
+ ext_outlier_style
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">plot_point_style</span><span class="special">&amp;</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Styles outliers more than 3 IQRs away from the box.
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">plot_point_style</span><span class="special">(</span><span class="identifier">white</span><span class="special">,</span>
+ <span class="identifier">black</span><span class="special">,</span>
+ <span class="number">1</span><span class="special">)</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td>whisker_length</td>
-<td>unsigned int</td>
-<td>Determines
- how long the whiskers at the end of the data range line will be</td>
-<td>30</td>
+<td>
+ <p>
+ whisker_length
+ </p>
+ </td>
+<td>
+ <p>
+ unsigned int
+ </p>
+ </td>
+<td>
+ <p>
+ Determines how long the whiskers at the end of the data range line
+ will be
+ </p>
+ </td>
+<td>
+ <p>
+ 30
+ </p>
+ </td>
 </tr>
 <tr>
-<td>box_width</td>
-<td>unsigned int</td>
-<td>Determines
- the width of the box.</td>
-<td>60</td>
+<td>
+ <p>
+ box_width
+ </p>
+ </td>
+<td>
+ <p>
+ unsigned int
+ </p>
+ </td>
+<td>
+ <p>
+ Determines the width of the box.
+ </p>
+ </td>
+<td>
+ <p>
+ 60
+ </p>
+ </td>
 </tr>
 <tr>
-<td>functor</td>
-<td>*</td>
-<td>A class or that contains
- a conversion function. You will not have to worry about this, unless
- you are trying to accomplish stuff like plotting a container of a user-defined
- class, for example human, that does not have a conversion to double.
- For example:
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting">
-<span class="keyword">class</span> <span class="identifier">my_functor</span>
+<td>
+ <p>
+ functor
+ </p>
+ </td>
+<td>
+ <p>
+ *
+ </p>
+ </td>
+<td>
+ <p>
+ A class or that contains a conversion function. You will not have to
+ worry about this, unless you are trying to accomplish stuff like plotting
+ a container of a user-defined class, for example human, that does not
+ have a conversion to double. For example:
+</p>
+<pre class="programlisting">
+<span class="keyword">class</span> <span class="identifier">my_functor</span>
 <span class="special">{</span>
- <span class="identifier">typdef</span> <span class="keyword">double</span> <span class="identifier">result_type</span><span class="special">;</span>
+ <span class="identifier">typdef</span> <span class="keyword">double</span> <span class="identifier">result_type</span><span class="special">;</span>
 
- <span class="keyword">double</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">body</span><span class="special">)</span> <span class="keyword">const</span>
+ <span class="keyword">double</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">const</span> <span class="identifier">human</span><span class="special">&amp;</span> <span class="identifier">body</span><span class="special">)</span> <span class="keyword">const</span>
   <span class="special">{</span>
- <span class="keyword">return</span> <span class="keyword">double</span><span class="special">(</span><span class="identifier">body</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
+ <span class="keyword">return</span> <span class="keyword">double</span><span class="special">(</span><span class="identifier">body</span><span class="special">.</span><span class="identifier">age</span><span class="special">());</span>
   <span class="special">}</span>
 <span class="special">}</span>
 
 <span class="comment">// ...
 </span>
-<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_data</span><span class="special">,</span> <span class="string">"People"</span><span class="special">,</span> <span class="identifier">functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
+<span class="identifier">plot</span><span class="special">(</span><span class="identifier">my_data</span><span class="special">,</span> <span class="string">"People"</span><span class="special">,</span> <span class="identifier">functor</span> <span class="special">=</span> <span class="identifier">my_functor</span><span class="special">());</span>
 </pre>
- </td>
+<p>
+ </p>
+ </td>
 <td>
-<code class="computeroutput"><span class="identifier">boost_default_convert</span></code>
+ <p>
+ <code class="computeroutput"><span class="identifier">boost_default_convert</span></code>
               (default) is sufficient in all cases where the data stored in the container
- can be directly cast to a double.</td>
+ can be directly cast to a double.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
+<br class="table-break">
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_2d_plot_interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../implementation.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_2d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../implementation.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_interface.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_interface.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/interface/svg_interface.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,376 +1,814 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg Public Interface</title>
+<title> svg
+ Public Interface</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../interface.html" title="Public Interfaces">
-<link rel="prev" href="../interface.html" title="Public Interfaces">
-<link rel="next" href="svg_1d_plot_interface.html" title="svg_1d_plot Public Interface">
+<link rel="up" href="../interface.html" title=" Public Interfaces">
+<link rel="prev" href="../interface.html" title=" Public Interfaces">
+<link rel="next" href="svg_1d_plot_interface.html" title=" svg_1d_plot Public Interface">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_1d_plot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_1d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.interface.svg_interface"></a> <code class="computeroutput"><span class="identifier">svg</span></code> Public Interface</h3></div></div></div>
-<div class="informaltable">
-<h5>
-<a name="id396830"></a>
- <span class="table-title">class `svg` Standard C++ Methods</span>
- </h5>
-<table class="table">
+<a name="svg_plot.interface.svg_interface"></a><a href="svg_interface.html" title=" svg
+ Public Interface"> <code class="computeroutput"><span class="identifier">svg</span></code>
+ Public Interface</a>
+</h3></div></div></div>
+<div class="table">
+<a name="id692220"></a><p class="title"><b>Table 3. class `svg` Standard
+ C++ Methods</b></p>
+<div class="table-contents"><table class="table" summary="class `svg` Standard
+ C++ Methods">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
-<th>Notes &amp;
- Examples</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Notes &amp; Examples
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">()</span></code></td>
-<td>Constructor</td>
-<td>Default
- image size (pixels) is (400, 400).</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Constructor
+ </p>
+ </td>
+<td>
+ <p>
+ Default image size (pixels) is (400, 400).
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">()</span></code></td>
-<td>Constructor</td>
-<td>Default
- image size (pixels) is (400, 400).</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Constructor
+ </p>
+ </td>
+<td>
+ <p>
+ Default image size (pixels) is (400, 400).
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id396915"></a>
- <span class="table-title">`svg` shapes</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id692352"></a><p class="title"><b>Table 4. `svg` shapes</b></p>
+<div class="table-contents"><table class="table" summary="`svg` shapes">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
-<th>Notes &amp;
- Examples</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Notes &amp; Examples
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">line</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code></td>
-<td>Adds
- a line from (x1,y1) to (x2,y2) in the root level of the document.</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">line</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">x2</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y2</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Adds a line from (x1,y1) to (x2,y2) in the root level of the document.
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">path_element</span><span class="special">&amp;</span> <span class="identifier">path</span><span class="special">()</span></code></td>
-<td>Pushes a <code class="computeroutput"><span class="identifier">path_element</span></code> to the back of the tree
- and returns a reference to it. This allows chaining, for example:
-<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting">
-<span class="identifier">path_element</span><span class="special">&amp;</span> <span class="identifier">my_path</span> <span class="special">=</span> <span class="identifier">image</span><span class="special">.</span><span class="identifier">path</span><span class="special">();</span>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">path_element</span><span class="special">&amp;</span>
+ <span class="identifier">path</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Pushes a <code class="computeroutput"><span class="identifier">path_element</span></code>
+ to the back of the tree and returns a reference to it. This allows
+ chaining, for example:
+</p>
+<pre class="programlisting">
+<span class="identifier">path_element</span><span class="special">&amp;</span> <span class="identifier">my_path</span> <span class="special">=</span> <span class="identifier">image</span><span class="special">.</span><span class="identifier">path</span><span class="special">();</span>
 
-<span class="identifier">my_path</span><span class="special">.</span><span class="identifier">M</span><span class="special">(</span><span class="number">3</span><span class="special">,</span> <span class="number">3</span><span class="special">).</span><span class="identifier">l</span><span class="special">(</span><span class="number">150</span><span class="special">,</span> <span class="number">150</span><span class="special">);</span>
+<span class="identifier">my_path</span><span class="special">.</span><span class="identifier">M</span><span class="special">(</span><span class="number">3</span><span class="special">,</span> <span class="number">3</span><span class="special">).</span><span class="identifier">l</span><span class="special">(</span><span class="number">150</span><span class="special">,</span> <span class="number">150</span><span class="special">);</span>
 </pre>
- </td>
+<p>
+ </p>
+ </td>
 <td class="auto-generated"> </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">get_g_element</span></code></td>
-<td>Class
- derived from svg_element.</td>
-<td>Graph element: line, circle,
- rect... Node element of document tree.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">g_element</span><span class="special">&amp;</span> <span class="identifier">add_g_element</span><span class="special">()</span></code></td>
-<td>Adds
- a g_element at the root of the document tree. Acts as a <code class="computeroutput"><span class="identifier">push_back</span><span class="special">()</span></code>
-</td>
-<td>Returns
- the <code class="computeroutput"><span class="identifier">g_element</span></code> that
- is pushed back. This allows you to do something like the following:
- <code class="computeroutput"><span class="identifier">image</span><span class="special">.</span><span class="identifier">add_g_element</span><span class="special">().</span><span class="identifier">line</span><span class="special">(/**/).</span><span class="identifier">line</span><span class="special">(/**/).</span><span class="identifier">rect</span><span class="special">(/**/);</span> </code>
- which adds two lines and a rectangle to the g_element that was just
- created.</td>
-</tr>
-<tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">circle</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="identifier">radius</span> <span class="special">=</span> <span class="number">5</span><span class="special">)</span></code></td>
-<td>Adds
- a point at (x,y) in the root level of the document</td>
-<td>If
- the user is calling the circle method, odds are they would prefer a
- real circle instead of a degenerate circle (a point). 5 is as good
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">get_g_element</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Class derived from svg_element.
+ </p>
+ </td>
+<td>
+ <p>
+ Graph element: line, circle, rect... Node element of document tree.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">g_element</span><span class="special">&amp;</span>
+ <span class="identifier">add_g_element</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Adds a g_element at the root of the document tree. Acts as a <code class="computeroutput"><span class="identifier">push_back</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the <code class="computeroutput"><span class="identifier">g_element</span></code>
+ that is pushed back. This allows you to do something like the following:
+ <code class="computeroutput"><span class="identifier">image</span><span class="special">.</span><span class="identifier">add_g_element</span><span class="special">().</span><span class="identifier">line</span><span class="special">(/**/).</span><span class="identifier">line</span><span class="special">(/**/).</span><span class="identifier">rect</span><span class="special">(/**/);</span>
+ </code> which adds two lines and a rectangle to the g_element that
+ was just created.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">circle</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span>
+ <span class="identifier">radius</span> <span class="special">=</span>
+ <span class="number">5</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Adds a point at (x,y) in the root level of the document
+ </p>
+ </td>
+<td>
+ <p>
+ If the user is calling the circle method, odds are they would prefer
+ a real circle instead of a degenerate circle (a point). 5 is as good
               a default as any other, and the user is unlikely want a point if they
- are making this call.</td>
+ are making this call.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">g_element</span><span class="special">&amp;</span> <span class="identifier">get_g_element</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Gets
- the g_element at the index specified.</td>
-<td>Gives a runtime
- error if you specify an index that does not contain a <code class="computeroutput"><span class="identifier">g_element</span></code>. An iterator interface
- to access these elements might be useful.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">g_element</span><span class="special">&amp;</span>
+ <span class="identifier">get_g_element</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Gets the g_element at the index specified.
+ </p>
+ </td>
+<td>
+ <p>
+ Gives a runtime error if you specify an index that does not contain
+ a <code class="computeroutput"><span class="identifier">g_element</span></code>. An iterator
+ interface to access these elements might be useful.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">rect</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">width</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">height</span><span class="special">)</span></code></td>
-<td>Adds
- a rectangle at point (x1, y1) that has <code class="computeroutput"><span class="identifier">width</span></code>
- wide and <code class="computeroutput"><span class="identifier">height</span></code> high.</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">rect</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y1</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">width</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">height</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Adds a rectangle at point (x1, y1) that has <code class="computeroutput"><span class="identifier">width</span></code>
+ wide and <code class="computeroutput"><span class="identifier">height</span></code> high.
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">text</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">text</span><span class="special">)</span></code></td>
-<td>Adds string <code class="computeroutput"><span class="identifier">text</span></code> at (x,y) in the root level of
- the document</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">text</span><span class="special">(</span><span class="keyword">double</span> <span class="identifier">x</span><span class="special">,</span> <span class="keyword">double</span> <span class="identifier">y</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">text</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Adds string <code class="computeroutput"><span class="identifier">text</span></code> at
+ (x,y) in the root level of the document
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id397698"></a>
- <span class="table-title">`svg` Copyright</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id693378"></a><p class="title"><b>Table 5. `svg` Copyright</b></p>
+<div class="table-contents"><table class="table" summary="`svg` Copyright">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
-<th>Notes &amp;
- Examples</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Notes &amp; Examples
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">copyright_holder</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Set copyright holder
- for the SVG XML document, as comment and XML.</td>
-<td>&lt;!--
- SVG Plot Copyright Paul A. Bristow 2007 --&gt; &lt;meta name<code class="literal">"copyright"
- content</code>"Paul A. Bristow" /&gt;</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">copyright_holder</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set copyright holder for the SVG XML document, as comment and XML.
+ </p>
+ </td>
+<td>
+ <p>
+ &lt;!-- SVG Plot Copyright Paul A. Bristow 2007 --&gt; &lt;meta name<code class="literal">"copyright"
+ content</code>"Paul A. Bristow" /&gt;
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">license</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Set
- license terms (if any): reproduction, distribution, attribution, commercialuse</td>
-<td>"permits"
- (default), "requires", or "prohibits".</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">license</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span>
+ <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set license terms (if any): reproduction, distribution, attribution,
+ commercialuse
+ </p>
+ </td>
+<td>
+ <p>
+ "permits" (default), "requires", or "prohibits".
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">reproduction</span><span class="special">()</span></code></td>
-<td>Returns the Reproduction
- segment of the license</td>
-<td>The default is <code class="computeroutput"><span class="string">""</span></code>
-</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">reproduction</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the Reproduction segment of the license
+ </p>
+ </td>
+<td>
+ <p>
+ The default is <code class="computeroutput"><span class="string">""</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">distribution</span><span class="special">()</span></code></td>
-<td>Returns the Distribution
- segment of the license</td>
-<td>The default is <code class="computeroutput"><span class="string">""</span></code>
-</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">distribution</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the Distribution segment of the license
+ </p>
+ </td>
+<td>
+ <p>
+ The default is <code class="computeroutput"><span class="string">""</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">attribution</span><span class="special">()</span></code></td>
-<td>Returns the Attribution
- segment of the license</td>
-<td>The default is <code class="computeroutput"><span class="string">""</span></code>
-</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">attribution</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the Attribution segment of the license
+ </p>
+ </td>
+<td>
+ <p>
+ The default is <code class="computeroutput"><span class="string">""</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">commercialuse</span><span class="special">()</span></code></td>
-<td>Returns the Commercial
- Use segment of the license</td>
-<td>The default is <code class="computeroutput"><span class="string">""</span></code>
-</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">commercialuse</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the Commercial Use segment of the license
+ </p>
+ </td>
+<td>
+ <p>
+ The default is <code class="computeroutput"><span class="string">""</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">copyright_holder</span></code></td>
-<td>Returns
- the copyright holder for the SVG XML document</td>
-<td>Returns
- the input value for copyright holder. Does not return any XML</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">copyright_holder</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the copyright holder for the SVG XML document
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the input value for copyright holder. Does not return any XML
+ </p>
+ </td>
 </tr>
 <tr>
 <td>
-<code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">license</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)]</span> <span class="special">[</span><span class="identifier">Sets</span> <span class="identifier">whether</span> <span class="keyword">or</span> <span class="keyword">not</span> <span class="identifier">the</span> <span class="identifier">license</span> <span class="identifier">information</span> <span class="identifier">should</span> <span class="identifier">be</span> <span class="identifier">added</span> <span class="identifier">to</span> <span class="identifier">the</span> <span class="identifier">written</span> <span class="identifier">document</span><span class="special">]</span> <span class="special">[</span></code>false`</td>
-<td class="auto-generated"> </td>
-<td class="auto-generated"> </td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">license</span><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets whether or not the license information should be added to the
+ written document
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">false</span></code>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">bool</span> <span class="identifier">is_license</span><span class="special">()</span></code></td>
-<td>Returns whether or
- not a license will be output with a written document.</td>
-<td>Permits
- reproduction &amp; distribution but requires atribution.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">bool</span> <span class="identifier">is_license</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns whether or not a license will be output with a written document.
+ </p>
+ </td>
+<td>
+ <p>
+ Permits reproduction &amp; distribution but requires atribution.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">author</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Sets the author of the
- document</td>
-<td>The copyright_holder is the default author</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">author</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the author of the document
+ </p>
+ </td>
+<td>
+ <p>
+ The copyright_holder is the default author
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">copyright_date</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Set copyright date for
- the SVG XML document, as comment and XML.</td>
-<td>&lt;!-- SVG
- Plot Copyright Paul A. Bristow 2007 --&gt; &lt;meta name<code class="literal">"date"
- content</code>"2007" /&gt;</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">copyright_date</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Set copyright date for the SVG XML document, as comment and XML.
+ </p>
+ </td>
+<td>
+ <p>
+ &lt;!-- SVG Plot Copyright Paul A. Bristow 2007 --&gt; &lt;meta name<code class="literal">"date"
+ content</code>"2007" /&gt;
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">copyright_date</span><span class="special">()</span></code></td>
-<td>Returns the copyright
- date for the SVG XML document</td>
-<td>Returns the date string,
- not the associated XML.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">copyright_date</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the copyright date for the SVG XML document
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the date string, not the associated XML.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">description</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Sets description for
- the SVG XML document, as comment and XML.</td>
-<td>&lt;!-- My
- Document description --&gt; &lt;desc&gt;My Document description&lt;/desc&gt;</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">description</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets description for the SVG XML document, as comment and XML.
+ </p>
+ </td>
+<td>
+ <p>
+ &lt;!-- My Document description --&gt; &lt;desc&gt;My Document description&lt;/desc&gt;
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">description</span><span class="special">()</span></code></td>
-<td>Returns the description
- of the document.</td>
-<td>Returns the description string, not
- the associated XML</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">description</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the description of the document.
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the description string, not the associated XML
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">author</span><span class="special">()</span></code></td>
-<td>Returns the author
- of the document.</td>
-<td>The default is the copyright_holder.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">author</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the author of the document.
+ </p>
+ </td>
+<td>
+ <p>
+ The default is the copyright_holder.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
-<div class="informaltable">
-<h5>
-<a name="id398697"></a>
- <span class="table-title">`svg` document settings and writing</span>
- </h5>
-<table class="table">
+<br class="table-break"><div class="table">
+<a name="id694671"></a><p class="title"><b>Table 6. `svg` document settings and writing</b></p>
+<div class="table-contents"><table class="table" summary="`svg` document settings and writing">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>Signature</th>
-<th>Description</th>
-<th>Notes &amp;
- Examples</th>
+<th>
+ <p>
+ Signature
+ </p>
+ </th>
+<th>
+ <p>
+ Description
+ </p>
+ </th>
+<th>
+ <p>
+ Notes &amp; Examples
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the precision output for coordinates (decimal digits)</td>
-<td>default
- 3, but for mobiles, 2 might suffice.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the precision output for coordinates (decimal digits)
+ </p>
+ </td>
+<td>
+ <p>
+ default 3, but for mobiles, 2 might suffice.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">document_title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code></td>
-<td>Sets title for the SVG
- XML document (not the plot)</td>
-<td>&lt;title&gt;My Document
- title&lt;/title&gt;</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">document_title</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets title for the SVG XML document (not the plot)
+ </p>
+ </td>
+<td>
+ <p>
+ &lt;title&gt;My Document title&lt;/title&gt;
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">int</span> <span class="identifier">document_size</span><span class="special">()</span></code></td>
-<td>Returns the number
- of elements in the root of the document</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">int</span> <span class="identifier">document_size</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the number of elements in the root of the document
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">int</span> <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Returns the current
- precision of doubles in the document</td>
-<td>The default is 3</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">int</span> <span class="identifier">coord_precision</span><span class="special">(</span><span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the current precision of doubles in the document
+ </p>
+ </td>
+<td>
+ <p>
+ The default is 3
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">x_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the width of the
- image (pixels).</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">x_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the width of the image (pixels).
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">y_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets the height of the
- image (pixels).</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">y_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the height of the image (pixels).
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="identifier">x_size</span><span class="special">()</span></code></td>
-<td>Returns the width of
- the image (pixels).</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span>
+ <span class="identifier">x_size</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the width of the image (pixels).
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span> <span class="identifier">y_size</span><span class="special">()</span></code></td>
-<td>Returns the height
- of the image (pixels).</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span>
+ <span class="identifier">y_size</span><span class="special">()</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Returns the height of the image (pixels).
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span></code></td>
-<td>Sets
- the size of the image produced, (pixels).</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">image_size</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">,</span> <span class="keyword">unsigned</span>
+ <span class="keyword">int</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Sets the size of the image produced, (pixels).
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">write</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code></td>
-<td>Writes the document
- to the file represented by the argument.</td>
-<td>Opens the file
- stream itself and tries to call <code class="computeroutput"><span class="identifier">write</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code>. Throws <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">runtime_exception</span></code>
- if it can not open the file.</td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">write</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Writes the document to the file represented by the argument.
+ </p>
+ </td>
+<td>
+ <p>
+ Opens the file stream itself and tries to call <code class="computeroutput"><span class="identifier">write</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code>. Throws <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">runtime_exception</span></code>
+ if it can not open the file.
+ </p>
+ </td>
 </tr>
 <tr>
-<td><code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span> <span class="identifier">write</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code></td>
-<td>Writes
- the document to the stream represented by the argument.</td>
-<td> </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">svg</span><span class="special">&amp;</span>
+ <span class="identifier">write</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream</span><span class="special">&amp;)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Writes the document to the stream represented by the argument.
+ </p>
+ </td>
+<td>
+ <p>
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
+<br class="table-break">
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../interface.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_1d_plot_interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_1d_plot_interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,42 +1,50 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Plot Defaults</title>
+<title> Plot Defaults</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="behavior/behavior_stylesheets.html" title="Stylesheets">
-<link rel="next" href="plot_defaults/1d_defaults.html" title="svg_1d_plot Defaults">
+<link rel="prev" href="behavior/behavior_stylesheets.html" title=" Stylesheets">
+<link rel="next" href="plot_defaults/1d_defaults.html" title=" svg_1d_plot
+ Defaults">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="behavior/behavior_stylesheets.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="plot_defaults/1d_defaults.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="behavior/behavior_stylesheets.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="plot_defaults/1d_defaults.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.plot_defaults"></a> Plot Defaults</h2></div></div></div>
+<a name="svg_plot.plot_defaults"></a> Plot Defaults
+</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"> svg_1d_plot Defaults</span></dt>
-<dt><span class="section"> svg_2d_plot Defaults</span></dt>
+<dt><span class="section"><a href="plot_defaults/1d_defaults.html"> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code>
+ Defaults</a></span></dt>
+<dt><span class="section"><a href="plot_defaults/2d_defaults.html"> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code>
+ Defaults</a></span></dt>
 </dl></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="behavior/behavior_stylesheets.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="plot_defaults/1d_defaults.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="behavior/behavior_stylesheets.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="plot_defaults/1d_defaults.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/1d_defaults.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/1d_defaults.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/1d_defaults.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,224 +1,520 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg_1d_plot Defaults</title>
+<title> svg_1d_plot
+ Defaults</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../plot_defaults.html" title="Plot Defaults">
-<link rel="prev" href="../plot_defaults.html" title="Plot Defaults">
-<link rel="next" href="2d_defaults.html" title="svg_2d_plot Defaults">
+<link rel="up" href="../plot_defaults.html" title=" Plot Defaults">
+<link rel="prev" href="../plot_defaults.html" title=" Plot Defaults">
+<link rel="next" href="2d_defaults.html" title=" svg_2d_plot
+ Defaults">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../plot_defaults.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="2d_defaults.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="2d_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.plot_defaults.1d_defaults"></a> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code> Defaults</h3></div></div></div>
+<a name="svg_plot.plot_defaults.1d_defaults"></a><a href="1d_defaults.html" title=" svg_1d_plot
+ Defaults"> <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code>
+ Defaults</a>
+</h3></div></div></div>
 <p>
         There are certain defaults, tabulated below, that are true at the beginning
         of the plotting.
       </p>
-<div class="informaltable">
-<h5>
-<a name="id395741"></a>
- <span class="table-title">Default Values</span>
- </h5>
-<table class="table">
+<div class="table">
+<a name="id690182"></a><p class="title"><b>Table 1. Default Values</b></p>
+<div class="table-contents"><table class="table" summary="Default Values">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>object</th>
-<th>Default value</th>
-<th>Rationale</th>
+<th>
+ <p>
+ object
+ </p>
+ </th>
+<th>
+ <p>
+ Default value
+ </p>
+ </th>
+<th>
+ <p>
+ Rationale
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>All colors not defined in this table</td>
-<td>black</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ All colors not defined in this table
+ </p>
+ </td>
+<td>
+ <p>
+ black
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Axis</td>
-<td>On, internal style</td>
-<td>Most graphs
- include an axis of some kind. The internal axis style is used because
- this seems to be the default behavior in many textbooks I have owned.</td>
+<td>
+ <p>
+ Axis
+ </p>
+ </td>
+<td>
+ <p>
+ On, internal style
+ </p>
+ </td>
+<td>
+ <p>
+ Most graphs include an axis of some kind. The internal axis style is
+ used because this seems to be the default behavior in many textbooks
+ I have owned.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Coordinate precision</td>
-<td>3 decimal digits</td>
-<td>Sufficient
- 1 in 1000 precision for typical small plots. (Higher precision will
- increase svg file size).</td>
+<td>
+ <p>
+ Coordinate precision
+ </p>
+ </td>
+<td>
+ <p>
+ 3 decimal digits
+ </p>
+ </td>
+<td>
+ <p>
+ Sufficient 1 in 1000 precision for typical small plots. (Higher precision
+ will increase svg file size).
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Distance between major X ticks</td>
-<td><code class="computeroutput"><span class="number">3</span> <span class="identifier">units</span></code></td>
-<td>Reasonably fits
- into a plot window.</td>
+<td>
+ <p>
+ Distance between major X ticks
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">3</span> <span class="identifier">units</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonably fits into a plot window.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the legend title</td>
-<td>12</td>
-<td>Reasonable
- when paired with the image size.</td>
+<td>
+ <p>
+ Font size of the legend title
+ </p>
+ </td>
+<td>
+ <p>
+ 12
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonable when paired with the image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the X Label</td>
-<td>12</td>
-<td>Reasonable
- when paired with the image size.</td>
+<td>
+ <p>
+ Font size of the X Label
+ </p>
+ </td>
+<td>
+ <p>
+ 12
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonable when paired with the image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the title</td>
-<td>30</td>
-<td>Makes
- the title stand out.</td>
+<td>
+ <p>
+ Font size of the title
+ </p>
+ </td>
+<td>
+ <p>
+ 30
+ </p>
+ </td>
+<td>
+ <p>
+ Makes the title stand out.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Grid lines</td>
-<td><code class="computeroutput"><span class="identifier">All</span> <span class="identifier">off</span></code></td>
-<td>Grid lines are
- a user's personal choice, so default is none.</td>
+<td>
+ <p>
+ Grid lines
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">All</span> <span class="identifier">off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Grid lines are a user's personal choice, so default is none.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Image background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Image background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Image size</td>
-<td><code class="computeroutput"><span class="number">500</span> <span class="identifier">by</span> <span class="number">350</span></code></td>
-<td>Details
- discernable. The image is easily viewable by those using 800x600 monitors.</td>
+<td>
+ <p>
+ Image size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">500</span> <span class="identifier">by</span>
+ <span class="number">350</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Details discernable. The image is easily viewable by those using 800x600
+ monitors.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Legend</td>
-<td><code class="computeroutput"><span class="identifier">Off</span></code></td>
-<td>The
- goal of the defaults is to provide the cleanest possible plot as a
- default. Excluding the legend meets this goal.</td>
+<td>
+ <p>
+ Legend
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">Off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The goal of the defaults is to provide the cleanest possible plot as
+ a default. Excluding the legend meets this goal.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Legend background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Legend background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Major tick length</td>
-<td>20 pixels</td>
-<td>Tasteful
- default when paired with the window size. This also makes the major
- ticks easily distinguishable from the minor ticks.</td>
+<td>
+ <p>
+ Major tick length
+ </p>
+ </td>
+<td>
+ <p>
+ 20 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Tasteful default when paired with the window size. This also makes
+ the major ticks easily distinguishable from the minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Major tick width</td>
-<td>2 pixels</td>
-<td>Major
- ticks are more obvious than minor ticks.</td>
+<td>
+ <p>
+ Major tick width
+ </p>
+ </td>
+<td>
+ <p>
+ 2 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Major ticks are more obvious than minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Minor tick length</td>
-<td>10 pixels</td>
-<td>Tasteful
- default when compared with the size of the grid. This makes the minor
- ticks less obvious than the major ticks.</td>
+<td>
+ <p>
+ Minor tick length
+ </p>
+ </td>
+<td>
+ <p>
+ 10 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Tasteful default when compared with the size of the grid. This makes
+ the minor ticks less obvious than the major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Minor tick width</td>
-<td>1 pixel</td>
-<td>This makes
- the minor tick less obvious than the major ticks.</td>
+<td>
+ <p>
+ Minor tick width
+ </p>
+ </td>
+<td>
+ <p>
+ 1 pixel
+ </p>
+ </td>
+<td>
+ <p>
+ This makes the minor tick less obvious than the major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Number of minor X ticks between each major X tick</td>
-<td>2</td>
-<td>This
- allows the minor ticks to appear on the integer values.</td>
+<td>
+ <p>
+ Number of minor X ticks between each major X tick
+ </p>
+ </td>
+<td>
+ <p>
+ 2
+ </p>
+ </td>
+<td>
+ <p>
+ This allows the minor ticks to appear on the integer values.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Plot Window</td>
-<td><code class="computeroutput"><span class="identifier">Off</span></code></td>
-<td>Initially
- off because it is the simplest case.</td>
+<td>
+ <p>
+ Plot Window
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">Off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Initially off because it is the simplest case.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Plot window background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Plot window background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Title</td>
-<td>On, <code class="computeroutput"><span class="string">"Plot
- of data"</span></code>
-</td>
-<td>The title is on because
- this is one of the most basic elements of a graph. The title is set
- to a default because when <code class="computeroutput"><span class="identifier">title_on</span> <span class="special">==</span> <span class="keyword">true</span></code>,
- something should display.</td>
+<td>
+ <p>
+ Title
+ </p>
+ </td>
+<td>
+ <p>
+ On, <code class="computeroutput"><span class="string">"Plot of data"</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The title is on because this is one of the most basic elements of a
+ graph. The title is set to a default because when <code class="computeroutput"><span class="identifier">title_on</span>
+ <span class="special">==</span> <span class="keyword">true</span></code>,
+ something should display.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Title size</td>
-<td><code class="computeroutput"><span class="number">30</span></code></td>
-<td>This
- is clearly visible in a variety of image sizes.</td>
+<td>
+ <p>
+ Title size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">30</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is clearly visible in a variety of image sizes.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Axis Label</td>
 <td>
-<code class="computeroutput"><span class="string">"X
- Axis"</span></code>, Off</td>
-<td>"X Axis" is
- the label because <span class="emphasis"><em>something</em></span> should display were
- the user to turn on the X-axis label without setting text.</td>
+ <p>
+ X Axis Label
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="string">"X Axis"</span></code>, Off
+ </p>
+ </td>
+<td>
+ <p>
+ "X Axis" is the label because <span class="emphasis"><em>something</em></span>
+ should display were the user to turn on the X-axis label without setting
+ text.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Axis Label Size</td>
-<td><code class="computeroutput"><span class="number">12</span></code></td>
-<td>This
- is a reasonable size at the default image size.</td>
+<td>
+ <p>
+ X Axis Label Size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">12</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is a reasonable size at the default image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Grid (Major and Minor)</td>
-<td>Off</td>
-<td>Turned
- off in the interest of providing simple, clean plots.</td>
+<td>
+ <p>
+ X Grid (Major and Minor)
+ </p>
+ </td>
+<td>
+ <p>
+ Off
+ </p>
+ </td>
+<td>
+ <p>
+ Turned off in the interest of providing simple, clean plots.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Range</td>
-<td><code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code></td>
-<td>Traditional
- plot viewport (but almost all plots will need to set both X and Y ranges).</td>
+<td>
+ <p>
+ X Range
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Traditional plot viewport (but almost all plots will need to set both
+ X and Y ranges).
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
+<br class="table-break">
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../plot_defaults.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="2d_defaults.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="2d_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/2d_defaults.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/2d_defaults.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/plot_defaults/2d_defaults.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,245 +1,571 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>svg_2d_plot Defaults</title>
+<title> svg_2d_plot
+ Defaults</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../plot_defaults.html" title="Plot Defaults">
-<link rel="prev" href="1d_defaults.html" title="svg_1d_plot Defaults">
-<link rel="next" href="../interface.html" title="Public Interfaces">
+<link rel="up" href="../plot_defaults.html" title=" Plot Defaults">
+<link rel="prev" href="1d_defaults.html" title=" svg_1d_plot
+ Defaults">
+<link rel="next" href="../interface.html" title=" Public Interfaces">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="1d_defaults.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="1d_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.plot_defaults.2d_defaults"></a> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code> Defaults</h3></div></div></div>
+<a name="svg_plot.plot_defaults.2d_defaults"></a><a href="2d_defaults.html" title=" svg_2d_plot
+ Defaults"> <code class="computeroutput"><span class="identifier">svg_2d_plot</span></code>
+ Defaults</a>
+</h3></div></div></div>
 <p>
         You may have noticed that there are certain defaults that are true at the
         beginning of the plotting. Here is a table of the defaults:
       </p>
-<div class="informaltable">
-<h5>
-<a name="id396242"></a>
- <span class="table-title">Default Values</span>
- </h5>
-<table class="table">
+<div class="table">
+<a name="id691126"></a><p class="title"><b>Table 2. Default Values</b></p>
+<div class="table-contents"><table class="table" summary="Default Values">
 <colgroup>
 <col>
 <col>
 <col>
 </colgroup>
 <thead><tr>
-<th>object</th>
-<th>Default value</th>
-<th>Rationale</th>
+<th>
+ <p>
+ object
+ </p>
+ </th>
+<th>
+ <p>
+ Default value
+ </p>
+ </th>
+<th>
+ <p>
+ Rationale
+ </p>
+ </th>
 </tr></thead>
 <tbody>
 <tr>
-<td>All colors not defined in this table</td>
-<td>black</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ All colors not defined in this table
+ </p>
+ </td>
+<td>
+ <p>
+ black
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Axis</td>
-<td>On, internal style</td>
-<td>Most graphs
- include an axis of some kind. The internal axis style is used because
- this seems to be the default behavior in many textbooks I have owned.</td>
+<td>
+ <p>
+ Axis
+ </p>
+ </td>
+<td>
+ <p>
+ On, internal style
+ </p>
+ </td>
+<td>
+ <p>
+ Most graphs include an axis of some kind. The internal axis style is
+ used because this seems to be the default behavior in many textbooks
+ I have owned.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Distance between major X ticks</td>
-<td><code class="computeroutput"><span class="number">3</span> <span class="identifier">units</span></code></td>
-<td>Reasonably fits
- into a plot window.</td>
+<td>
+ <p>
+ Distance between major X ticks
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">3</span> <span class="identifier">units</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonably fits into a plot window.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the legend title</td>
-<td>12</td>
-<td>Reasonable
- when paired with the image size.</td>
+<td>
+ <p>
+ Font size of the legend title
+ </p>
+ </td>
+<td>
+ <p>
+ 12
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonable when paired with the image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the X Label</td>
-<td>12</td>
-<td>Reasonable
- when paired with the image size.</td>
+<td>
+ <p>
+ Font size of the X Label
+ </p>
+ </td>
+<td>
+ <p>
+ 12
+ </p>
+ </td>
+<td>
+ <p>
+ Reasonable when paired with the image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Font size of the title</td>
-<td>30</td>
-<td>Makes
- the title stand out.</td>
+<td>
+ <p>
+ Font size of the title
+ </p>
+ </td>
+<td>
+ <p>
+ 30
+ </p>
+ </td>
+<td>
+ <p>
+ Makes the title stand out.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Grid lines</td>
-<td><code class="computeroutput"><span class="identifier">All</span> <span class="identifier">off</span></code></td>
-<td>Grid lines are
- a user's personal choice, so default is off</td>
+<td>
+ <p>
+ Grid lines
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">All</span> <span class="identifier">off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Grid lines are a user's personal choice, so default is off
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Image background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Image background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Image size</td>
-<td><code class="computeroutput"><span class="number">500</span> <span class="identifier">by</span> <span class="number">350</span></code></td>
-<td>Details
- discernable. The image is easily viewable by those using 800x600 monitors.</td>
+<td>
+ <p>
+ Image size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">500</span> <span class="identifier">by</span>
+ <span class="number">350</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Details discernable. The image is easily viewable by those using 800x600
+ monitors.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Legend</td>
-<td><code class="computeroutput"><span class="identifier">Off</span></code></td>
-<td>The
- goal of the defaults is to provide the cleanest possible plot as a
- default. Excluding the legend meets this goal.</td>
+<td>
+ <p>
+ Legend
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">Off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The goal of the defaults is to provide the cleanest possible plot as
+ a default. Excluding the legend meets this goal.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Legend background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Legend background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Major tick length</td>
-<td>20 pixels</td>
-<td>Tasteful
- default when paired with the window size. This also makes the major
- ticks easily distinguishable from the minor ticks.</td>
+<td>
+ <p>
+ Major tick length
+ </p>
+ </td>
+<td>
+ <p>
+ 20 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Tasteful default when paired with the window size. This also makes
+ the major ticks easily distinguishable from the minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Major tick width</td>
-<td>2 pixels</td>
-<td>Major
- ticks are more obvious than minor ticks.</td>
+<td>
+ <p>
+ Major tick width
+ </p>
+ </td>
+<td>
+ <p>
+ 2 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Major ticks are more obvious than minor ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Minor tick length</td>
-<td>10 pixels</td>
-<td>Tasteful
- default when compared with the size of the grid. This makes the minor
- ticks less obvious than the major ticks.</td>
+<td>
+ <p>
+ Minor tick length
+ </p>
+ </td>
+<td>
+ <p>
+ 10 pixels
+ </p>
+ </td>
+<td>
+ <p>
+ Tasteful default when compared with the size of the grid. This makes
+ the minor ticks less obvious than the major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Minor tick width</td>
-<td>1 pixel</td>
-<td>This makes
- the minor tick less obvious than the major ticks.</td>
+<td>
+ <p>
+ Minor tick width
+ </p>
+ </td>
+<td>
+ <p>
+ 1 pixel
+ </p>
+ </td>
+<td>
+ <p>
+ This makes the minor tick less obvious than the major ticks.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Number of minor X ticks between each major X tick</td>
-<td>2</td>
-<td>This
- allows the minor ticks to appear on the integers.</td>
+<td>
+ <p>
+ Number of minor X ticks between each major X tick
+ </p>
+ </td>
+<td>
+ <p>
+ 2
+ </p>
+ </td>
+<td>
+ <p>
+ This allows the minor ticks to appear on the integers.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Plot Window</td>
-<td><code class="computeroutput"><span class="identifier">Off</span></code></td>
-<td>Initially
- off because it is the simplest case.</td>
+<td>
+ <p>
+ Plot Window
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="identifier">Off</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Initially off because it is the simplest case.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Plot window background</td>
-<td>white</td>
-<td>Coloring,
- if any, will be highly dependent on user needs.</td>
+<td>
+ <p>
+ Plot window background
+ </p>
+ </td>
+<td>
+ <p>
+ white
+ </p>
+ </td>
+<td>
+ <p>
+ Coloring, if any, will be highly dependent on user needs.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Title</td>
-<td>On, <code class="computeroutput"><span class="string">"Plot
- of data"</span></code>
-</td>
-<td>The title is on because
- this is one of the most basic elements of a graph. The title is set
- to a default because when <code class="computeroutput"><span class="identifier">title_on</span> <span class="special">==</span> <span class="keyword">true</span></code>,
- <span class="emphasis"><em>something</em></span> should display.</td>
+<td>
+ <p>
+ Title
+ </p>
+ </td>
+<td>
+ <p>
+ On, <code class="computeroutput"><span class="string">"Plot of data"</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The title is on because this is one of the most basic elements of a
+ graph. The title is set to a default because when <code class="computeroutput"><span class="identifier">title_on</span>
+ <span class="special">==</span> <span class="keyword">true</span></code>,
+ <span class="emphasis"><em>something</em></span> should display.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Title size</td>
-<td><code class="computeroutput"><span class="number">30</span></code></td>
-<td>This
- is clearly visible in a variety of image sizes.</td>
+<td>
+ <p>
+ Title size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">30</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is clearly visible in a variety of image sizes.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Axis Label</td>
 <td>
-<code class="computeroutput"><span class="string">"X
- Axis"</span></code>, Off</td>
-<td>"X Axis" is
- the label because <span class="emphasis"><em>something</em></span> should display were
- the user to turn on the X axis label without setting text.</td>
+ <p>
+ X Axis Label
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="string">"X Axis"</span></code>, Off
+ </p>
+ </td>
+<td>
+ <p>
+ "X Axis" is the label because <span class="emphasis"><em>something</em></span>
+ should display were the user to turn on the X axis label without setting
+ text.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Axis Label Size</td>
-<td><code class="computeroutput"><span class="number">12</span></code></td>
-<td>This
- is a reasonable size at the default image size.</td>
+<td>
+ <p>
+ X Axis Label Size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">12</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is a reasonable size at the default image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Grid (Major and Minor)</td>
-<td>Off</td>
-<td>Turned
- off in the interest of providing simple, clean plots.</td>
+<td>
+ <p>
+ X Grid (Major and Minor)
+ </p>
+ </td>
+<td>
+ <p>
+ Off
+ </p>
+ </td>
+<td>
+ <p>
+ Turned off in the interest of providing simple, clean plots.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>X Range</td>
-<td><code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code></td>
-<td>Traditional
- plot viewport.</td>
+<td>
+ <p>
+ X Range
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Traditional plot viewport.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Y Axis Label</td>
 <td>
-<code class="computeroutput"><span class="string">"Y
- Axis"</span></code>, Off</td>
-<td>"Y Axis" is
- the label because <span class="emphasis"><em>something</em></span> should display were
- the user to turn on the X axis label without setting text, and this
- is the most informative.</td>
+ <p>
+ Y Axis Label
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="string">"Y Axis"</span></code>, Off
+ </p>
+ </td>
+<td>
+ <p>
+ "Y Axis" is the label because <span class="emphasis"><em>something</em></span>
+ should display were the user to turn on the X axis label without setting
+ text, and this is the most informative.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Y Axis Label Size</td>
-<td><code class="computeroutput"><span class="number">12</span></code></td>
-<td>This
- is a reasonable size at the default image size.</td>
+<td>
+ <p>
+ Y Axis Label Size
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="number">12</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ This is a reasonable size at the default image size.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Y Grid (Major and Minor)</td>
-<td>Off</td>
-<td>Turned
- off in the interest of providing simple, clean plots.</td>
+<td>
+ <p>
+ Y Grid (Major and Minor)
+ </p>
+ </td>
+<td>
+ <p>
+ Off
+ </p>
+ </td>
+<td>
+ <p>
+ Turned off in the interest of providing simple, clean plots.
+ </p>
+ </td>
 </tr>
 <tr>
-<td>Y Range</td>
-<td><code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code></td>
-<td>Traditional
- plot viewport.</td>
+<td>
+ <p>
+ Y Range
+ </p>
+ </td>
+<td>
+ <p>
+ <code class="computeroutput"><span class="special">(-</span><span class="number">10</span><span class="special">,</span> <span class="number">10</span><span class="special">)</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ Traditional plot viewport.
+ </p>
+ </td>
 </tr>
 </tbody>
-</table>
+</table></div>
 </div>
+<br class="table-break">
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="1d_defaults.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../interface.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="1d_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../plot_defaults.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../interface.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,42 +1,51 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: Boxplot</title>
+<title> Tutorial: Boxplot</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="tutorial_2d_code_simple/2d_special.html" title="Tutorial: 2D Special Features">
-<link rel="next" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html" title="Simple Example">
+<link rel="prev" href="tutorial_2d_code_simple/2d_special.html" title=" Tutorial:
+ 2D Special Features">
+<link rel="next" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html" title="
+ Simple Example">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_2d_code_simple/2d_special.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_2d_code_simple/2d_special.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.svg_boxplot_tutorial"></a> Tutorial: Boxplot</h2></div></div></div>
+<a name="svg_plot.svg_boxplot_tutorial"></a> Tutorial: Boxplot
+</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"> Simple Example</span></dt>
-<dt><span class="section"> Full Boxplot Layout</span></dt>
+<dt><span class="section"><a href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html">
+ Simple Example</a></span></dt>
+<dt><span class="section"><a href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html">
+ Full Boxplot Layout</a></span></dt>
 </dl></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_2d_code_simple/2d_special.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_2d_code_simple/2d_special.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/svg_boxplot_tutorial/svg_boxplot_tutorial_simple.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,35 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Simple Example</title>
+<title>
+ Simple Example</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../svg_boxplot_tutorial.html" title="Tutorial: Boxplot">
-<link rel="prev" href="../svg_boxplot_tutorial.html" title="Tutorial: Boxplot">
-<link rel="next" href="svg_boxplot_tutorial_full.html" title="Full Boxplot Layout">
+<link rel="up" href="../svg_boxplot_tutorial.html" title=" Tutorial: Boxplot">
+<link rel="prev" href="../svg_boxplot_tutorial.html" title=" Tutorial: Boxplot">
+<link rel="next" href="svg_boxplot_tutorial_full.html" title="
+ Full Boxplot Layout">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../svg_boxplot_tutorial.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../svg_boxplot_tutorial.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial_full.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial_full.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple"></a> Simple Example</h3></div></div></div>
+<a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple"></a><a href="svg_boxplot_tutorial_simple.html" title="
+ Simple Example">
+ Simple Example</a>
+</h3></div></div></div>
 <pre class="programlisting">
 <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">svg_plot</span><span class="special">/</span><span class="identifier">svg_2d_plot</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -78,30 +83,34 @@
 <span class="special">}</span>
 </pre>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.image_boxplot_simple_svg"></a><h5>
-<a name="id394329"></a>
- Image boxplot_simple.svg
+<a name="id688429"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.image_boxplot_simple_svg">Image
+ boxplot_simple.svg</a>
       </h5>
 <p>
         <span class="inlinemediaobject"><img src="../../images/boxplot_simple.png" alt="boxplot_simple"></span>
       </p>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.basic_example_breakdown"></a><h5>
-<a name="id394359"></a>
- Basic Example Breakdown
+<a name="id688477"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.basic_example_breakdown">Basic
+ Example Breakdown</a>
       </h5>
 <p>
         Let's examine what this does.
       </p>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.initializing_a_new_boxplot"></a><h5>
-<a name="id394376"></a>
- Initializing a new boxplot
+<a name="id688508"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.initializing_a_new_boxplot">Initializing
+ a new boxplot</a>
       </h5>
 <p>
         This initializes a new boxplot. This also sets the many default values. 4
         svg_boxplot my_plot;
       </p>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_a_color"></a><h5>
-<a name="id394392"></a>
- Setting a color
+<a name="id688542"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_a_color">Setting
+ a color</a>
       </h5>
 <p>
         This sets the border color of the entire image to black (not just the plot
@@ -111,8 +120,9 @@
 <span class="identifier">my_plot</span><span class="special">.</span><span class="identifier">background_border_color</span><span class="special">(</span><span class="identifier">black</span><span class="special">);</span>
 </pre>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_strings_in_the_plot"></a><h5>
-<a name="id394443"></a>
- Setting strings in the plot
+<a name="id688615"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_strings_in_the_plot">Setting
+ strings in the plot</a>
       </h5>
 <p>
         The following code sets the title that appears at the top of the graph, the
@@ -125,8 +135,9 @@
       <span class="special">.</span><span class="identifier">y_label</span><span class="special">(</span><span class="string">"Population Size"</span><span class="special">);</span>
 </pre>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_axis_information"></a><h4>
-<a name="id394542"></a>
- Setting axis information
+<a name="id688744"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.setting_axis_information">Setting
+ axis information</a>
       </h4>
 <p>
         Axis information for the X-axis is very limited, as the coordinate system
@@ -140,8 +151,9 @@
         .y_major_interval(20);
       </p>
 <a name="svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.writing_to_a_file"></a><h5>
-<a name="id394565"></a>
- Writing to a file
+<a name="id688788"></a>
+ <a href="svg_boxplot_tutorial_simple.html#svg_plot.svg_boxplot_tutorial.svg_boxplot_tutorial_simple.writing_to_a_file">Writing
+ to a file</a>
       </h5>
 <p>
         This finally writes our plot to the file "boxplot_simple.svg".
@@ -155,11 +167,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../svg_boxplot_tutorial.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../svg_boxplot_tutorial.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial_full.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="svg_boxplot_tutorial_full.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/todo.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/todo.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/todo.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,31 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>To Do List</title>
+<title> To Do List</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="howtouse.html" title="How To Use This Documentation">
-<link rel="next" href="color.html" title="Colors">
+<link rel="prev" href="howtouse.html" title=" How To Use This Documentation">
+<link rel="next" href="color.html" title=" Colors">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="howtouse.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="color.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="howtouse.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="color.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.todo"></a> To Do List</h2></div></div></div>
+<a name="svg_plot.todo"></a> To Do List
+</h2></div></div></div>
 <p>
       This project is still in development, so here is a list of things that I would
       still like to do by the end of the project. I recommend you check here first
@@ -89,11 +90,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="howtouse.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="color.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="howtouse.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="color.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,43 +1,53 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: 2D</title>
+<title> Tutorial: 2D</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="tutorial_code_1d_simple/1d_special.html" title="Tutorial: 1D Special Features">
-<link rel="next" href="tutorial_2d_code_simple/2d_simple_code_example.html" title="Simple Code Example">
+<link rel="prev" href="tutorial_code_1d_simple/1d_special.html" title=" Tutorial:
+ 1D Special Features">
+<link rel="next" href="tutorial_2d_code_simple/2d_simple_code_example.html" title="
+ Simple Code Example">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_code_1d_simple/1d_special.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_2d_code_simple/2d_simple_code_example.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_code_1d_simple/1d_special.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_2d_code_simple/2d_simple_code_example.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.tutorial_2d_code_simple"></a> Tutorial: 2D</h2></div></div></div>
+<a name="svg_plot.tutorial_2d_code_simple"></a> Tutorial: 2D
+</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"> Simple Code Example</span></dt>
-<dt><span class="section"> Tutorial: Fuller Layout Example</span></dt>
-<dt><span class="section"> Tutorial: 2D Special Features</span></dt>
+<dt><span class="section"><a href="tutorial_2d_code_simple/2d_simple_code_example.html">
+ Simple Code Example</a></span></dt>
+<dt><span class="section"><a href="tutorial_2d_code_simple/full_2d_layout.html"> Tutorial:
+ Fuller Layout Example</a></span></dt>
+<dt><span class="section"><a href="tutorial_2d_code_simple/2d_special.html"> Tutorial:
+ 2D Special Features</a></span></dt>
 </dl></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_code_1d_simple/1d_special.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_2d_code_simple/2d_simple_code_example.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_code_1d_simple/1d_special.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_2d_code_simple/2d_simple_code_example.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_simple_code_example.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_simple_code_example.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_simple_code_example.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,35 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Simple Code Example</title>
+<title>
+ Simple Code Example</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_2d_code_simple.html" title="Tutorial: 2D">
-<link rel="prev" href="../tutorial_2d_code_simple.html" title="Tutorial: 2D">
-<link rel="next" href="full_2d_layout.html" title="Tutorial: Fuller Layout Example">
+<link rel="up" href="../tutorial_2d_code_simple.html" title=" Tutorial: 2D">
+<link rel="prev" href="../tutorial_2d_code_simple.html" title=" Tutorial: 2D">
+<link rel="next" href="full_2d_layout.html" title=" Tutorial:
+ Fuller Layout Example">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../tutorial_2d_code_simple.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="full_2d_layout.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="full_2d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_2d_code_simple.2d_simple_code_example"></a> Simple Code Example</h3></div></div></div>
+<a name="svg_plot.tutorial_2d_code_simple.2d_simple_code_example"></a><a href="2d_simple_code_example.html" title="
+ Simple Code Example">
+ Simple Code Example</a>
+</h3></div></div></div>
 <pre class="programlisting">
 <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">svg_plot</span><span class="special">/</span><span class="identifier">svg_2d_plot</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -60,15 +65,17 @@
 <span class="special">}</span>
 </pre>
 <a name="svg_plot.tutorial_2d_code_simple.2d_simple_code_example.resulting_simple_2d_example_image"></a><h5>
-<a name="id390381"></a>
- Resulting Simple_2D Example Image
+<a name="id683752"></a>
+ <a href="2d_simple_code_example.html#svg_plot.tutorial_2d_code_simple.2d_simple_code_example.resulting_simple_2d_example_image">Resulting
+ Simple_2D Example Image</a>
       </h5>
 <p>
         <span class="inlinemediaobject"><img src="../../images/2d_simple.png" alt="2d_simple"></span>
       </p>
 <a name="svg_plot.tutorial_2d_code_simple.2d_simple_code_example.simple_2d_example_breakdown"></a><h5>
-<a name="id390410"></a>
- Simple_2D Example Breakdown
+<a name="id683799"></a>
+ <a href="2d_simple_code_example.html#svg_plot.tutorial_2d_code_simple.2d_simple_code_example.simple_2d_example_breakdown">Simple_2D
+ Example Breakdown</a>
       </h5>
 <p>
         Let's examine what this does.
@@ -100,9 +107,8 @@
           that the legend will show up.
         </li>
 <li>
-<code class="computeroutput"><span class="identifier">x_range</span><span class="special">(-</span><span class="number">1</span><span class="special">,</span> <span class="number">11</span><span class="special">)</span></code> means
- that the axis displayed will be between -1 and 11, as you can see in the
- above images.
+<code class="computeroutput"><span class="identifier">x_range</span><span class="special">(-</span><span class="number">1</span><span class="special">,</span> <span class="number">11</span><span class="special">)</span></code> means that the axis displayed will be
+ between -1 and 11, as you can see in the above images.
         </li>
 <li>
 <code class="computeroutput"><span class="identifier">background_border_color</span><span class="special">(</span><span class="identifier">black</span><span class="special">)</span></code> sets the border around the image to <code class="computeroutput"><span class="identifier">black</span></code>. Ordinarily it is left to be the
@@ -136,11 +142,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../tutorial_2d_code_simple.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="full_2d_layout.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="full_2d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_special.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_special.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/2d_special.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,33 +1,39 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: 2D Special Features</title>
+<title> Tutorial:
+ 2D Special Features</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_2d_code_simple.html" title="Tutorial: 2D">
-<link rel="prev" href="full_2d_layout.html" title="Tutorial: Fuller Layout Example">
-<link rel="next" href="../svg_boxplot_tutorial.html" title="Tutorial: Boxplot">
+<link rel="up" href="../tutorial_2d_code_simple.html" title=" Tutorial: 2D">
+<link rel="prev" href="full_2d_layout.html" title=" Tutorial:
+ Fuller Layout Example">
+<link rel="next" href="../svg_boxplot_tutorial.html" title=" Tutorial: Boxplot">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="full_2d_layout.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../svg_boxplot_tutorial.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="full_2d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_2d_code_simple.2d_special"></a> Tutorial: 2D Special Features</h3></div></div></div>
+<a name="svg_plot.tutorial_2d_code_simple.2d_special"></a><a href="2d_special.html" title=" Tutorial:
+ 2D Special Features"> Tutorial:
+ 2D Special Features</a>
+</h3></div></div></div>
 <a name="svg_plot.tutorial_2d_code_simple.2d_special.y_axis_grid_lines"></a><h5>
-<a name="id392705"></a>
- Y-Axis Grid Lines
+<a name="id686467"></a>
+ <a href="2d_special.html#svg_plot.tutorial_2d_code_simple.2d_special.y_axis_grid_lines">Y-Axis
+ Grid Lines</a>
       </h5>
 <p>
         If you would like horizontal grid lines that go across the graph, you can
@@ -64,9 +70,11 @@
 <span class="identifier">my_plot</span><span class="special">.</span><span class="identifier">y_major_grid_color</span><span class="special">(</span><span class="identifier">lightblue</span><span class="special">)</span> <span class="comment">// Darker color for major grid.
 </span> <span class="special">.</span><span class="identifier">y_minor_grid_color</span><span class="special">(</span><span class="identifier">azure</span><span class="special">);</span> <span class="comment">// lighter color for minor grid.
 </span></pre>
-<p>
- [heading External Y Axis Style]
- </p>
+<a name="svg_plot.tutorial_2d_code_simple.2d_special.external_y_axis_style"></a><h5>
+<a name="id686845"></a>
+ <a href="2d_special.html#svg_plot.tutorial_2d_code_simple.2d_special.external_y_axis_style">External
+ Y Axis Style</a>
+ </h5>
 <p>
         For an alternate way to display a regular axis, you can use an external style:
       </p>
@@ -75,7 +83,7 @@
 </pre>
 <div class="important"><table border="0" summary="Important">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../images/important.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../../../../../trunk/doc/html/images/important.png"></td>
 <th align="left">Important</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -83,9 +91,11 @@
           will not turn the axis back on. To do that, you must call <code class="computeroutput"><span class="identifier">axis_on</span><span class="special">(</span><span class="keyword">true</span><span class="special">)</span></code>
         </p></td></tr>
 </table></div>
-<p>
- [heading Fill the area between the plot and the axis]
- </p>
+<a name="svg_plot.tutorial_2d_code_simple.2d_special.fill_the_area_between_the_plot_and_the_axis"></a><h5>
+<a name="id686980"></a>
+ <a href="2d_special.html#svg_plot.tutorial_2d_code_simple.2d_special.fill_the_area_between_the_plot_and_the_axis">Fill
+ the area between the plot and the axis</a>
+ </h5>
 <p>
         When there is a call to the plot() method, define <code class="computeroutput"><span class="identifier">_area_fill_color</span></code>
       </p>
@@ -102,8 +112,9 @@
         <span class="inlinemediaobject"><img src="../../images/2d_area_fill.png" alt="2d_area_fill"></span>
       </p>
 <a name="svg_plot.tutorial_2d_code_simple.2d_special.curve_interpolation"></a><h5>
-<a name="id393265"></a>
- Curve Interpolation
+<a name="id687184"></a>
+ <a href="2d_special.html#svg_plot.tutorial_2d_code_simple.2d_special.curve_interpolation">Curve
+ Interpolation</a>
       </h5>
 <p>
         If you would like an <span class="bold"><strong>interpolated curve</strong></span>
@@ -121,7 +132,7 @@
       </p>
 <div class="warning"><table border="0" summary="Warning">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../images/warning.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../../../../../../../../../trunk/doc/html/images/warning.png"></td>
 <th align="left">Warning</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -136,11 +147,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="full_2d_layout.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../svg_boxplot_tutorial.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="full_2d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../svg_boxplot_tutorial.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/full_2d_layout.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/full_2d_layout.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_2d_code_simple/full_2d_layout.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,36 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: Fuller Layout Example</title>
+<title> Tutorial:
+ Fuller Layout Example</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_2d_code_simple.html" title="Tutorial: 2D">
-<link rel="prev" href="2d_simple_code_example.html" title="Simple Code Example">
-<link rel="next" href="2d_special.html" title="Tutorial: 2D Special Features">
+<link rel="up" href="../tutorial_2d_code_simple.html" title=" Tutorial: 2D">
+<link rel="prev" href="2d_simple_code_example.html" title="
+ Simple Code Example">
+<link rel="next" href="2d_special.html" title=" Tutorial:
+ 2D Special Features">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="2d_simple_code_example.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="2d_special.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="2d_simple_code_example.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="2d_special.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_2d_code_simple.full_2d_layout"></a> Tutorial: Fuller Layout Example</h3></div></div></div>
+<a name="svg_plot.tutorial_2d_code_simple.full_2d_layout"></a><a href="full_2d_layout.html" title=" Tutorial:
+ Fuller Layout Example"> Tutorial:
+ Fuller Layout Example</a>
+</h3></div></div></div>
 <pre class="programlisting">
 <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">svg_plot</span><span class="special">/</span><span class="identifier">svg_2d_plot</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -127,11 +133,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="2d_simple_code_example.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="2d_special.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="2d_simple_code_example.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="2d_special.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,43 +1,52 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: 1D</title>
+<title> Tutorial: 1D</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="svg_tutorial.html" title="SVG tutorial">
-<link rel="next" href="tutorial_code_1d_simple/tutorial_code_1d_example.html" title="Simple 1D Example">
+<link rel="prev" href="svg_tutorial.html" title=" SVG tutorial">
+<link rel="next" href="tutorial_code_1d_simple/tutorial_code_1d_example.html" title="
+ Simple 1D Example">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_tutorial.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_code_1d_simple/tutorial_code_1d_example.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_tutorial.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_code_1d_simple/tutorial_code_1d_example.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.tutorial_code_1d_simple"></a> Tutorial: 1D</h2></div></div></div>
+<a name="svg_plot.tutorial_code_1d_simple"></a> Tutorial: 1D
+</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"> Simple 1D Example</span></dt>
-<dt><span class="section"> Tutorial: 1D Full Layout Example</span></dt>
-<dt><span class="section"> Tutorial: 1D Special Features</span></dt>
+<dt><span class="section"><a href="tutorial_code_1d_simple/tutorial_code_1d_example.html">
+ Simple 1D Example</a></span></dt>
+<dt><span class="section"><a href="tutorial_code_1d_simple/full_1d_layout.html"> Tutorial:
+ 1D Full Layout Example</a></span></dt>
+<dt><span class="section"><a href="tutorial_code_1d_simple/1d_special.html"> Tutorial:
+ 1D Special Features</a></span></dt>
 </dl></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_tutorial.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_code_1d_simple/tutorial_code_1d_example.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_tutorial.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="tutorial_code_1d_simple/tutorial_code_1d_example.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/1d_special.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/1d_special.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/1d_special.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,33 +1,40 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: 1D Special Features</title>
+<title> Tutorial:
+ 1D Special Features</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_code_1d_simple.html" title="Tutorial: 1D">
-<link rel="prev" href="full_1d_layout.html" title="Tutorial: 1D Full Layout Example">
-<link rel="next" href="../tutorial_2d_code_simple.html" title="Tutorial: 2D">
+<link rel="up" href="../tutorial_code_1d_simple.html" title=" Tutorial: 1D">
+<link rel="prev" href="full_1d_layout.html" title=" Tutorial:
+ 1D Full Layout Example">
+<link rel="next" href="../tutorial_2d_code_simple.html" title=" Tutorial: 2D">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="full_1d_layout.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../tutorial_2d_code_simple.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="full_1d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_code_1d_simple.1d_special"></a> Tutorial: 1D Special Features</h3></div></div></div>
-<p>
- [heading X-Axis Grid Lines]
- </p>
+<a name="svg_plot.tutorial_code_1d_simple.1d_special"></a><a href="1d_special.html" title=" Tutorial:
+ 1D Special Features"> Tutorial:
+ 1D Special Features</a>
+</h3></div></div></div>
+<a name="svg_plot.tutorial_code_1d_simple.1d_special.x_axis_grid_lines"></a><h5>
+<a name="id682506"></a>
+ <a href="1d_special.html#svg_plot.tutorial_code_1d_simple.1d_special.x_axis_grid_lines">X-Axis
+ Grid Lines</a>
+ </h5>
 <p>
         If you would like vertical grid lines that go on the graph, you can make
         the following call to <code class="computeroutput"><span class="identifier">svg_1d_plot</span></code>:
@@ -50,8 +57,9 @@
         <span class="inlinemediaobject"><img src="../../images/1d_x_grid.png" alt="1d_x_grid"></span>
       </p>
 <a name="svg_plot.tutorial_code_1d_simple.1d_special.x_axis_external_style"></a><h5>
-<a name="id389511"></a>
- X-Axis External Style
+<a name="id682728"></a>
+ <a href="1d_special.html#svg_plot.tutorial_code_1d_simple.1d_special.x_axis_external_style">X-Axis
+ External Style</a>
       </h5>
 <p>
         TODO this has ben changed to x_up_ticks and x_down_ticks and y_left_ticks
@@ -74,7 +82,7 @@
       </p>
 <div class="important"><table border="0" summary="Important">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../images/important.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../../../../../../trunk/doc/html/images/important.png"></td>
 <th align="left">Important</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -85,11 +93,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="full_1d_layout.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../tutorial_2d_code_simple.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="full_1d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../tutorial_2d_code_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/full_1d_layout.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/full_1d_layout.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/full_1d_layout.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,36 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Tutorial: 1D Full Layout Example</title>
+<title> Tutorial:
+ 1D Full Layout Example</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_code_1d_simple.html" title="Tutorial: 1D">
-<link rel="prev" href="tutorial_code_1d_example.html" title="Simple 1D Example">
-<link rel="next" href="1d_special.html" title="Tutorial: 1D Special Features">
+<link rel="up" href="../tutorial_code_1d_simple.html" title=" Tutorial: 1D">
+<link rel="prev" href="tutorial_code_1d_example.html" title="
+ Simple 1D Example">
+<link rel="next" href="1d_special.html" title=" Tutorial:
+ 1D Special Features">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_code_1d_example.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="1d_special.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_code_1d_example.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="1d_special.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_code_1d_simple.full_1d_layout"></a> Tutorial: 1D Full Layout Example</h3></div></div></div>
+<a name="svg_plot.tutorial_code_1d_simple.full_1d_layout"></a><a href="full_1d_layout.html" title=" Tutorial:
+ 1D Full Layout Example"> Tutorial:
+ 1D Full Layout Example</a>
+</h3></div></div></div>
 <pre class="programlisting">
 <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">svg_plot</span><span class="special">/</span><span class="identifier">svg_1d_plot</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -128,11 +134,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="tutorial_code_1d_example.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="1d_special.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="tutorial_code_1d_example.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="1d_special.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/tutorial_code_1d_example.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/tutorial_code_1d_example.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_code_1d_simple/tutorial_code_1d_example.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,30 +1,35 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Simple 1D Example</title>
+<title>
+ Simple 1D Example</title>
 <link rel="stylesheet" href="../../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../../index.html" title="SVG_Plot">
-<link rel="up" href="../tutorial_code_1d_simple.html" title="Tutorial: 1D">
-<link rel="prev" href="../tutorial_code_1d_simple.html" title="Tutorial: 1D">
-<link rel="next" href="full_1d_layout.html" title="Tutorial: 1D Full Layout Example">
+<link rel="up" href="../tutorial_code_1d_simple.html" title=" Tutorial: 1D">
+<link rel="prev" href="../tutorial_code_1d_simple.html" title=" Tutorial: 1D">
+<link rel="next" href="full_1d_layout.html" title=" Tutorial:
+ 1D Full Layout Example">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../tutorial_code_1d_simple.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="full_1d_layout.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="full_1d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example"></a> Simple 1D Example</h3></div></div></div>
+<a name="svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example"></a><a href="tutorial_code_1d_example.html" title="
+ Simple 1D Example">
+ Simple 1D Example</a>
+</h3></div></div></div>
 <pre class="programlisting">
 <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">svg_plot</span><span class="special">/</span><span class="identifier">svg_1d_plot</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
 <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">svg</span><span class="special">;</span>
@@ -61,8 +66,9 @@
         <span class="inlinemediaobject"><img src="../../images/1d_simple.png" alt="1d_simple"></span>
       </p>
 <a name="svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example.a_note_on_syntax"></a><h5>
-<a name="id386840"></a>
- A Note On Syntax
+<a name="id679596"></a>
+ <a href="tutorial_code_1d_example.html#svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example.a_note_on_syntax">A
+ Note On Syntax</a>
       </h5>
 <p>
         The syntax "<code class="computeroutput"><span class="identifier">my_plot</span><span class="special">.</span><span class="identifier">title</span><span class="special">(</span><span class="string">"Hello"</span><span class="special">).</span><span class="identifier">legend_on</span><span class="special">(</span><span class="keyword">true</span><span class="special">)...</span></code>"
@@ -95,8 +101,9 @@
         code to read more clearly!
       </p>
 <a name="svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example.simple_1d_example_breakdown"></a><h5>
-<a name="id387184"></a>
- Simple 1D Example Breakdown
+<a name="id680006"></a>
+ <a href="tutorial_code_1d_example.html#svg_plot.tutorial_code_1d_simple.tutorial_code_1d_example.simple_1d_example_breakdown">Simple
+ 1D Example Breakdown</a>
       </h5>
 <p>
         Let's examine what this does in detail.
@@ -127,9 +134,8 @@
           that the legend will display.
         </li>
 <li>
-<code class="computeroutput"><span class="identifier">x_range</span><span class="special">(-</span><span class="number">1</span><span class="special">,</span> <span class="number">11</span><span class="special">)</span></code> means
- that the axis displayed will be between -1 and 11, as you can see in the
- above image.
+<code class="computeroutput"><span class="identifier">x_range</span><span class="special">(-</span><span class="number">1</span><span class="special">,</span> <span class="number">11</span><span class="special">)</span></code> means that the axis displayed will be
+ between -1 and 11, as you can see in the above image.
         </li>
 </ul></div>
 <pre class="programlisting">
@@ -157,11 +163,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="../tutorial_code_1d_simple.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="full_1d_layout.html"><img src="../../images/next.png" alt="Next"></a>
+<a accesskey="p" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial_code_1d_simple.html"><img src="../../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="full_1d_layout.html"><img src="../../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_stylesheet.html
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_stylesheet.html (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/html/svg_plot/tutorial_stylesheet.html 2008-01-15 14:07:26 EST (Tue, 15 Jan 2008)
@@ -1,32 +1,34 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Stylesheet Tutorial</title>
+<title> Stylesheet Tutorial</title>
 <link rel="stylesheet" href="../../../../../../../../../trunk/doc/html/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
 <link rel="start" href="../index.html" title="SVG_Plot">
 <link rel="up" href="../index.html" title="SVG_Plot">
-<link rel="prev" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html" title="Full Boxplot Layout">
-<link rel="next" href="behavior.html" title="Behavior">
+<link rel="prev" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html" title="
+ Full Boxplot Layout">
+<link rel="next" href="behavior.html" title=" Behavior">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table cellpadding="2" width="100%">
+<table cellpadding="2" width="100%"><tr>
 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../trunk/boost.png"></td>
 <td align="center">Home</td>
 <td align="center">Libraries</td>
 <td align="center">People</td>
 <td align="center">FAQ</td>
 <td align="center">More</td>
-</table>
+</tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="behavior.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="svg_plot.tutorial_stylesheet"></a> Stylesheet Tutorial</h2></div></div></div>
+<a name="svg_plot.tutorial_stylesheet"></a> Stylesheet Tutorial
+</h2></div></div></div>
 <p>
- To include a stylesheet into a program with any plot, simply use the <code class="computeroutput"><span class="identifier">load_stylesheet</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">filename</span><span class="special">)</span></code> method to load an external stylesheet. To
+ To include a stylesheet into a program with any plot, simply use the <code class="computeroutput"><span class="identifier">load_stylesheet</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&amp;</span> <span class="identifier">filename</span><span class="special">)</span></code> method to load an external stylesheet. To
       load the file ./style.css, for instance, we would call:
     </p>
 <pre class="programlisting">
@@ -45,8 +47,9 @@
       </li>
 </ul></div>
 <a name="svg_plot.tutorial_stylesheet.using_the_stylesheet"></a><h5>
-<a name="id394756"></a>
- Using the stylesheet
+<a name="id689041"></a>
+ <a href="tutorial_stylesheet.html#svg_plot.tutorial_stylesheet.using_the_stylesheet">Using the
+ stylesheet</a>
     </h5>
 <p>
       Here is the output file for the simple 1D example, as used before:
@@ -59,7 +62,7 @@
     </p>
 <div class="caution"><table border="0" summary="Caution">
 <tr>
-<td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../images/caution.png"></td>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../../../../../../../../trunk/doc/html/images/caution.png"></td>
 <th align="left">Caution</th>
 </tr>
 <tr><td align="left" valign="top"><p>
@@ -76,11 +79,15 @@
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
 <td align="left"></td>
-<td align="right"><small>Copyright © 2007 Jake Voytko</small></td>
+<td align="right"><div class="copyright-footer">Copyright © 2007 Jake Voytko<p>
+ Distributed under the Boost Software License, Version 1.0. (See accompanying
+ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ </p>
+</div></td>
 </tr></table>
 <hr>
 <div class="spirit-nav">
-<a accesskey="p" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html"><img src="../images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../images/home.png" alt="Home"></a><a accesskey="n" href="behavior.html"><img src="../images/next.png" alt="Next"></a>
+<a accesskey="p" href="svg_boxplot_tutorial/svg_boxplot_tutorial_full.html"><img src="../../../../../../../../../trunk/doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../../../../../trunk/doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="behavior.html"><img src="../../../../../../../../../trunk/doc/html/images/next.png" alt="Next"></a>
 </div>
 </body>
 </html>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk