plotmm-0.1.2/ 0000777 0001750 0001750 00000000000 10334655064 010035 5 0000000 0000000 plotmm-0.1.2/doc/ 0000777 0001750 0001750 00000000000 10334655064 010602 5 0000000 0000000 plotmm-0.1.2/doc/html/ 0000777 0001750 0001750 00000000000 10334654217 011545 5 0000000 0000000 plotmm-0.1.2/doc/html/classes.html 0000644 0001750 0001750 00000012206 10334654215 014003 0000000 0000000
| Paint (PlotMM) | |
| Curve (PlotMM) | Plot (PlotMM) | |
| PlotCanvas (PlotMM) | |
| DoubleIntMap (PlotMM) | PlotLabel (PlotMM) | |
| DoublePoint (PlotMM) |
| |
| DoubleRect (PlotMM) | Rectangle (PlotMM) | |
| DoubleSize (PlotMM) |
| |
| Scale (PlotMM) | |
| ErrorCurve (PlotMM) | ScaleLabels (PlotMM) | |
| Symbol (PlotMM) | |
| HScale (PlotMM) |
| |
| HScaleLabels (PlotMM) | VScale (PlotMM) | |
| VScaleLabels (PlotMM) |
1.4.4
plotmm-0.1.2/doc/html/dir_000000_dep.dot 0000644 0001750 0001750 00000000371 10334654215 014375 0000000 0000000 digraph G {
compound=true
node [ fontsize=10, fontname="Helvetica"];
edge [ labelfontsize=9, labelfontname="Helvetica"];
dir_000000 [shape=box, label="plotmm", style="filled", fillcolor="#eeeeff", pencolor="black", URL="dir_000000.html"];
}
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_scale_div.html 0000644 0001750 0001750 00000051476 10073242216 020020 0000000 0000000
The ScaleDiv class can build linear and logarithmic scale divisions for specified intervals. It uses an adjustable algorithm to generate the major and minor step widths automatically. A scale division has a minimum value, a maximum value, a vector of major marks, and a vector of minor marks.
#include <plotmm/scalediv.h> #include <iostream.h> main() { int i,k; PlotMM::ScaleDiv sd; sd.rebuild(0.01, 1000, 10, 10, TRUE, 0.0); k=0; for (i=0;i<sd.maj_count();i++) { while(k < sd.min_count()) { if (sd.min_mark(k) < sd.maj_mark(i)) { cout << " - " << sd.min_mark(i) << "\n"; k++; } else break; } cout << "-- " << sd.maj_mark(i) << "\n"; } while(k < sd.min_count()) { cout << " - " << sd.min_mark(i) << "\n"; k++; } }
Public Member Functions | |
| ScaleDiv () | |
| int | operator== (const ScaleDiv &s) const |
| int | operator!= (const ScaleDiv &s) const |
| double | low_bound () const |
| double | high_bound () const |
| uint | min_count () const |
| uint | maj_count () const |
| bool | log_scale () const |
| double | maj_mark (int i) const |
| double | min_mark (int i) const |
| double | maj_step () const |
| void | reset () |
| bool | rebuild (double lBound, double hBound, int maxMaj, int maxMin, bool log, double step=0.0, bool ascend=true) |
|
|
Construct a ScaleDiv instance.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return major mark at position i.
|
|
|
|
|
|
|
|
|
Return minor mark at position i.
|
|
|
Inequality.
|
|
|
Equality operator.
|
|
||||||||||||||||||||||||||||||||
|
Build a scale width major and minor divisions If no fixed step width is specified or if it is set to 0, the major step width will be calculated automatically according to the the value of maxMajSteps. The maxMajSteps parameter has no effect if a fixed step size is specified. The minor step width is always calculated automatically. If the step width is to be calculated automatically, the algorithm tries to find reasonable values fitting into the scheme {1,2,5}*10^n with an integer number n for linear scales. For logarithmic scales, there are three different cases
|
|
|
Detach the shared data and set everything to zero.
|
1.3.6
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_double_rect-members.html 0000644 0001750 0001750 00000026471 10334654216 022012 0000000 0000000
1.4.4
plotmm-0.1.2/doc/html/graph_legend.html 0000644 0001750 0001750 00000010724 10334654217 014772 0000000 0000000
Consider the following example:
/*! Invisible class because of truncation */ class Invisible { }; /*! Truncated class, inheritance relation is hidden */ class Truncated : public Invisible { }; /* Class not documented with doxygen comments */ class Undocumented { }; /*! Class that is inherited using public inheritance */ class PublicBase : public Truncated { }; /*! A template class */ template<class T> class Templ { }; /*! Class that is inherited using protected inheritance */ class ProtectedBase { }; /*! Class that is inherited using private inheritance */ class PrivateBase { }; /*! Class that is used by the Inherited class */ class Used { }; /*! Super class that inherits a number of other classes */ class Inherited : public PublicBase, protected ProtectedBase, private PrivateBase, public Undocumented public Templ<int> { private: Used *m_usedClass; };
MAX_DOT_GRAPH_HEIGHT tag in the configuration file is set to 240 this will result in the following graph:
The boxes in the above graph have the following meaning:
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_rectangle-members.html 0000644 0001750 0001750 00000010073 10334654217 021457 0000000 0000000
| get_abs_height() const | PlotMM::Rectangle | |
| get_abs_width() const | PlotMM::Rectangle | |
| get_x_max() const | PlotMM::Rectangle | |
| get_x_min() const | PlotMM::Rectangle | |
| get_y_max() const | PlotMM::Rectangle | |
| get_y_min() const | PlotMM::Rectangle | |
| Rectangle() (defined in PlotMM::Rectangle) | PlotMM::Rectangle | |
| Rectangle(int x, int y, int width, int height) (defined in PlotMM::Rectangle) | PlotMM::Rectangle | |
| set_destination(int x, int y) | PlotMM::Rectangle | |
| set_origin(int x, int y) | PlotMM::Rectangle | |
| set_points(int x1, int y1, int x2, int y2) | PlotMM::Rectangle | |
| set_rect(int x, int y, int width, int height) | PlotMM::Rectangle |
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot.html 0000644 0001750 0001750 00000043642 10334654216 017050 0000000 0000000
Public Member Functions | |
| int | add_curve (const Glib::RefPtr< Curve > &, PlotAxisID xaxis=AXIS_BOTTOM, PlotAxisID yaxis=AXIS_LEFT, bool enable=true) |
| void | replot () |
| PlotLabel * | title () |
| Scale * | scale (PlotAxisID id) |
| PlotLabel * | label (PlotAxisID id) |
| SigC::Signal3< void, int, int, GdkEventButton * > | signal_plot_mouse_press () |
| SigC::Signal3< void, int, int, GdkEventButton * > | signal_plot_mouse_release () |
| SigC::Signal3< void, int, int, GdkEventMotion * > | signal_plot_mouse_move () |
| void | set_selection (const Rectangle &r) |
| Rectangle | get_selection () |
| void | enable_selection () |
| void | disable_selection () |
Protected Member Functions | |
| virtual bool | on_canvas_expose_event (GdkEventExpose *event) |
| virtual void | draw_selection_ () |
Protected Attributes | |
| Gtk::Table | layout_ |
| PlotCanvas | canvas_ |
| std::vector< Scale * > | tickMark_ |
| std::vector< ScaleLabels * > | tickLabel_ |
| std::vector< PlotLabel * > | axisLabel_ |
| PlotLabel | title_ |
Classes | |
| struct | CurveInfo |
|
||||||||||||||||||||
|
Add a new curve to the plot. The plot will not be updated - call replot() manually after adding new curves. |
|
|
Disable drawing of the selection rectangle. To actually erase the rectangle, replot() must be called. |
|
|
draws the current selection rectangle on the plot canvas.
|
|
|
Enable drawing of the selection rectangle. The geometry can be changed using set_selection. To actually draw the rectangle, replot() must be called. |
|
|
Replot all curves After adding curves to the plot or changing the curves' data with Curve::setData() this method must be called to update the plot. If autoscaling is activated for an axis used by any of the Curve::enabled() curves that axis will be scaled to a new range. |
|
|
Set the selection to the given rectangle. If selection is enabled, the old rectangle is erased and the new is drawn. Note that replot() does not have to be called explicitly. No other canvas contents but the rectangle are redrawn calling this method. |
|
|
Return the signal owned by plot canvas.
|
|
|
Return the signal owned by plot canvas.
|
|
|
Return the signal owned by plot canvas.
|
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_scale_labels.html 0000644 0001750 0001750 00000043720 10334654217 020501 0000000 0000000

Public Member Functions | |
| ScaleLabels (Gtk::PositionType p) | |
| virtual | ~ScaleLabels () |
| Pango::FontDescription * | font () |
| void | set_labels (int offs, const std::map< int, double > &labels) |
| void | set_enabled (bool b) |
| bool | enabled () const |
| Glib::ustring | format (double) const |
| int | text_width (const Glib::ustring &) const |
| int | text_height (const Glib::ustring &) const |
| Gtk::PositionType | position () const |
Protected Member Functions | |
| virtual void | update_ () |
| virtual void | newsize_ () |
| virtual void | requestsize_ () |
Protected Attributes | |
| int | offset_ |
| int | layw_ |
| int | layh_ |
| int | range_ |
| std::map< int, double > | labels_ |
| Glib::RefPtr< Pango::Layout > | layout_ |
| Pango::FontDescription | font_ |
|
|
Constructor |
|
|
Destructor |
|
|
Return if the labels are enabled.
|
|
|
Return a pointer to the labels' font.
|
|
|
Format a string from a double value
|
|
|
Return where the labels are positioned.
|
|
|
Enable drawing of scalelabels
|
|
||||||||||||
|
Set the labels to be drawn The given map holds double values associated with int positions on a scale. The given offs can be taken as a hint to calculate the right positions for the labels. Normally, the leftmost or upmost border of the scale's Gdk::Window is taken for this offset.
|
|
|
Query the pixel height of the given text when rendered with the current font() settings |
|
|
Query the pixel width of the given text when rendered with the current font() settings |
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_symbol.html 0000644 0001750 0001750 00000060611 10334654217 017373 0000000 0000000
Symbols are used by Curve to draw individual data points. There are various kinds of symbols that can be used like ellipses, rectangles, triangles (with different orientations) and crosses. Additional symbols can be implemented by overloading draw_vfunc_().
Public Member Functions | |
| Symbol (SymbolStyleID st=SYMBOL_NONE, int size=1, int sizeb=-1) | |
| virtual | ~Symbol () |
| bool | operator!= (const Symbol &) const |
| bool | operator== (const Symbol &) const |
| void | set_size (int a, int b=-1) |
| void | set_style (SymbolStyleID s) |
| Glib::RefPtr< Paint > | paint () const |
| int | size () const |
| int | size_aux () const |
| SymbolStyleID | style () const |
| void | draw (const Glib::RefPtr< Gdk::Drawable > &p, const Gdk::Point &pt) const |
| void | draw (const Glib::RefPtr< Gdk::Drawable > &p, const Gdk::Rectangle &r) const |
| void | draw (const Glib::RefPtr< Gdk::Drawable > &p, int x, int y, int w=-1, int h=-1) const |
Protected Member Functions | |
| virtual void | draw_vfunc_ (const Glib::RefPtr< Gdk::Drawable > &p, int x, int y, int w, int h) const |
|
||||||||||||||||
|
Constructor.
|
|
|
Destructor.
|
|
||||||||||||||||||||||||
|
Draw the symbol at the specified position with optionally specified size.
|
|
||||||||||||
|
Draw the symbol at a point (x,y).
|
|
||||||||||||
|
Draw the symbol at a specified point.
|
|
||||||||||||||||||||||||
|
overload this function to provide additional symbol styles To draw the symbol this function makes use of paint() - the pen is used to draw outlines whilst the brush is used to fill the symbol. |
|
|
!= operator
|
|
|
== operator
|
|
|
Return a reference to the Paint the symbol is drawn with |
|
||||||||||||
|
Specify the symbol's size. In most cases, the vertical size is the same as the horizontal size. It is perfectly sufficient to set the horizontal size. size() and size_aux() will return the same value, then.
|
|
|
Specify the symbol style. The following styles are defined:
|
|
|
Return Size.
|
|
|
Return auxiliary size or, if unset, size().
|
|
|
Return SymbolStyle.
|
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot-members.html 0000644 0001750 0001750 00000014414 10334654217 020474 0000000 0000000
| add_curve(const Glib::RefPtr< Curve > &, PlotAxisID xaxis=AXIS_BOTTOM, PlotAxisID yaxis=AXIS_LEFT, bool enable=true) | PlotMM::Plot | |
| axisLabel_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| canvas_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| disable_selection() | PlotMM::Plot | |
| draw_selection_() | PlotMM::Plot | [protected, virtual] |
| enable_selection() | PlotMM::Plot | |
| get_selection() (defined in PlotMM::Plot) | PlotMM::Plot | |
| label(PlotAxisID id) (defined in PlotMM::Plot) | PlotMM::Plot | |
| layout_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| on_canvas_expose_event(GdkEventExpose *event) (defined in PlotMM::Plot) | PlotMM::Plot | [protected, virtual] |
| Plot() (defined in PlotMM::Plot) | PlotMM::Plot | |
| replot() | PlotMM::Plot | |
| scale(PlotAxisID id) (defined in PlotMM::Plot) | PlotMM::Plot | |
| set_selection(const Rectangle &r) | PlotMM::Plot | |
| signal_plot_mouse_move() | PlotMM::Plot | |
| signal_plot_mouse_press() | PlotMM::Plot | |
| signal_plot_mouse_release() | PlotMM::Plot | |
| tickLabel_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| tickMark_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| title() (defined in PlotMM::Plot) | PlotMM::Plot | |
| title_ (defined in PlotMM::Plot) | PlotMM::Plot | [protected] |
| ~Plot() (defined in PlotMM::Plot) | PlotMM::Plot | [virtual] |
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__inherit__graph.dot 0000644 0001750 0001750 00000001003 10334647012 022470 0000000 0000000 digraph G
{
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
node [fontname="Helvetica",fontsize=10,shape=record];
Node1 [label="PlotMM::HScale",height=0.2,width=0.4,color="white", fillcolor="black", style="filled" fontcolor="white"];
Node2 -> Node1 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="Helvetica"];
Node2 [label="PlotMM::Scale",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$class_plot_m_m_1_1_scale.html"];
}
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__inherit__graph.md5 0000644 0001750 0001750 00000000040 10334647012 022367 0000000 0000000 2bb4f294562d700d4758143232580087 plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__inherit__graph.map 0000644 0001750 0001750 00000000076 10073240203 022457 0000000 0000000 base referer
rect $class_plot_m_m_1_1_scale.html 10,18 104,42
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__inherit__graph.png 0000644 0001750 0001750 00000001405 10073240202 022462 0000000 0000000 ‰PNG
IHDR s ˆ &8É 'PLTEÿÿþoÃÃÃ;;;___ßßß???ŸŸŸ¿¿¿ ÿÿÿ£¤›„ tRNS @æØf ŒIDATxœíØOOA p¿çöô+ôhÔ Ç†4ÊÑ-ÖÙ#EŽ=X—kµ‘½jÜÎu÷öP™ew߇ê›5aµ¦3áÀ0óÛ÷‡e“a‰;~.Yj©¥–>€f¸Øˆ~£F´ô¥¨»(ˆ»Ú|¤#¡ˆ¤¢ÔÌ“¨‰˜M‰VÇ4 5øÔ5óÌ×{÷Ò®Žtå,C±L7}Y¥åHð…LÌM¨ëø‚nò¦©æ¨qµQ‹Ä)¥]=P˜-#Üq©©/âúP ZÖ;3j…á&ç‘H;_8ÜÅhÅl¡rŸBú¤i+üætV¦LJÂH«ûL?ÄÇyíDë¦ £MΟ6óhU‡Ê¹·í„èT‡ô]ø‰Y1—šIok¥Vi|–Ó´¦›¦Vá7x¥I«s(w˜Þ‘ç2…ÚtX—¹©
¨åþ@Ð&îÜM–þM:çQýæþGø¼ñ¶`˜^—^†d\LK/DŠ}.zý4:¿Øç¢¥RQÆÏEŸrû[j©¥–Zj©¥ÿ]ðoÌÏ„–¾**¥ŠÏò`Žg)è‚FÍ\™×>9cÙŠøuLØ#ÐØžÐƒJmC'"uˆýŒ<<Ì_ˆ×`hLÇÁÀm0í8S8êÀÖ3µ‹ab<ªY®&ë8ðÎ+ß°Yß6þ¬UqÙÛÎTXYãp›—G“„aÍD¤„*d‘쉩„M™ØK3uå0ý8hM¨Ä+av¬|îð¦ü¸{‡æQ!¦ÈsÓ^{‚×ʱiˆ’朦·µâñÓ3¡èÈÀãZË1øfS¿{—š.úï±*™^¦0î0^¸‚ï`-i·xS"ÿ¥{ØÒ¹ôQÃRK-}EôZ†§¯sò
^ IEND®B`‚ plotmm-0.1.2/doc/html/class_plot_m_m_1_1_v_scale-members.html 0000644 0001750 0001750 00000020154 10334654217 021130 0000000 0000000
1.4.4
plotmm-0.1.2/doc/html/functions_vars.html 0000644 0001750 0001750 00000002705 10334654215 015414 0000000 0000000
1.4.4
plotmm-0.1.2/doc/html/dir_000000.html 0000644 0001750 0001750 00000010663 10334654215 013730 0000000 0000000
Files | |
| file | compat.h |
| file | curve.cc |
| file | curve.h |
| file | doubleintmap.cc |
| file | doubleintmap.h |
| file | doublerect.cc |
| file | doublerect.h |
| file | errorcurve.cc |
| file | errorcurve.h |
| file | paint.cc |
| file | paint.h |
| file | plot.cc |
| file | plot.h |
| file | rectangle.h |
| file | scale.cc |
| file | scale.h |
| file | scalediv.cc |
| file | scalediv.h |
| file | supplemental.cc |
| file | supplemental.h |
| file | symbol.cc |
| file | symbol.h |
1.4.4
plotmm-0.1.2/doc/html/installation.html 0000644 0001750 0001750 00000006545 10334654215 015060 0000000 0000000
If you obtained a cvs-snapshot or checked out the sources from cvs, it is now time to
# bootstrap
Now, type
# ./configure # make
If there were no errors, just type
# examples/simple/simple
# make install
(we might want to have a plotmm.spec file some day)
# doxygen Doxyfile
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_paint.html 0000644 0001750 0001750 00000017555 10334654216 017211 0000000 0000000
Public Member Functions | |
| Paint (const Paint &c) | |
| bool | operator!= (const Paint &) const |
| bool | operator== (const Paint &) const |
| void | set_pen_color (const Gdk::Color &) |
| void | set_brush_color (const Gdk::Color &) |
| Glib::RefPtr< Gdk::GC > | pen (const Glib::RefPtr< Gdk::Drawable > &) const |
| Glib::RefPtr< Gdk::GC > | brush (const Glib::RefPtr< Gdk::Drawable > &) const |
| bool | filled () const |
|
|
Return Brush (no fill).
|
|
|
Return Pen (only outline).
|
|
|
Set the color of the brush The pen is used to fill objects |
|
|
Set the color of the pen The pen is used to draw lines or outlines of objects |
1.4.4
plotmm-0.1.2/doc/html/functions_func.html 0000644 0001750 0001750 00000070001 10334654215 015366 0000000 0000000
1.4.4
plotmm-0.1.2/doc/html/hierarchy.html 0000644 0001750 0001750 00000005206 10334654215 014326 0000000 0000000
This inheritance list is sorted roughly, but not completely, alphabetically:
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot__coll__graph.dot 0000644 0001750 0001750 00000002046 10334654216 021353 0000000 0000000 digraph G
{
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
node [fontname="Helvetica",fontsize=10,shape=record];
Node1 [label="PlotMM::Plot",height=0.2,width=0.4,color="white", fillcolor="black", style="filled" fontcolor="white"];
Node2 -> Node1 [dir=back,color="darkorchid3",fontsize=10,style="dashed",label="title_",fontname="Helvetica"];
Node2 [label="PlotMM::PlotLabel",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$class_plot_m_m_1_1_plot_label.html"];
Node3 -> Node1 [dir=back,color="darkorchid3",fontsize=10,style="dashed",label="select_",fontname="Helvetica"];
Node3 [label="PlotMM::Rectangle",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$class_plot_m_m_1_1_rectangle.html"];
Node4 -> Node1 [dir=back,color="darkorchid3",fontsize=10,style="dashed",label="canvas_",fontname="Helvetica"];
Node4 [label="PlotMM::PlotCanvas",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$class_plot_m_m_1_1_plot_canvas.html"];
}
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot__coll__graph.md5 0000644 0001750 0001750 00000000040 10334654216 021242 0000000 0000000 42c124778b2345792b0e509e96a97d2f plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot__coll__graph.map 0000644 0001750 0001750 00000000260 10073240202 021320 0000000 0000000 base referer
rect $class_plot_m_m_1_1_plot_label.html 7,18 121,42
rect $class_plot_m_m_1_1_rectangle.html 145,18 265,42
rect $class_plot_m_m_1_1_plot_canvas.html 289,18 414,42
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_plot__coll__graph.png 0000644 0001750 0001750 00000003650 10073240202 021335 0000000 0000000 ‰PNG
IHDR ¦ ˜ ]XPY *PLTEÿÿþ…+³˜2ÍÃÃÃ;;;___ßßß???ŸŸŸ¿¿¿ ÿÿÿhÿZ tRNS @æØf ,IDATxœíœËnÛF†óEVZhQ¿A^¡K'-`-ƒ4µT¬ÖäÒ6’HË"Ie“ÂÖ²I-‹›6q¸ nç]:g†ºY”Ä’¦GBéÌüœsáH<É#Ø==ʺ)È0é!䇓2LzÈ0é!䇓2LzhW™&DUþ‚“²I‚>Š3)_ÍqV>¢ºaJ«-†i›•aJ«-†i›Õ
“½®pX`][膓&â³þs&‹3ŠnÔ·€õ Æø~1Øùó¿—ÛB iÛ¼”%ês+,ŠX®¾ôFÆG`Ti7¶0ü4mzF„z
¸äLL>ôªÓ¶`}n%ŠöªL}¦‹ú°³•é’úôàó„XûÐ; 7yØ÷-2°¢åV“Þ^ç¡çC™F¬BÉ+WÔçVhÃpð¸}ë5¬B“yRþ©œøW /§^\<¶Î–™(ëŽA¾ü·.`|I;4E?Íìí)h›žÂ>=
e*±ËxBO-QŸ[‰ë[ªöòåâ üÎûŽU,0
õñS9Ÿ à²÷ÓÈVù¡½¿<Ÿ¼gìBØ£/¾5®ÿήÈÕð™˜Oó {kÓsævì:Ÿþ²ñlA}n {äLlzäSø•y]26ðS9Ÿi ßNÍA¾¸;öøŒ¹¾ÕÏ¿aUž>ói`‡µ¿Ù`maàÐ~Â)ÀâA}nÅ
FW¸Ú õ‡×'쀗cÎ|'Ùg ì§À ž[6Ž*Í&ÞÔup"Ó¦ Ÿh‡µÃ…{ѵLâ2b}n%ÚrÞ°l°™Ï;ßjŒ8ï'üTÆg€× ¿Npüðð7(¬2Óæm‘y
>/0‰ÀÑÑQ‡Í6ŸNÄjÖ1Üy}nÁz5Èãë™Ê¼%|>á§2>Ó \²uoê4f£ µU&¶,Aå œ³1ë]¬{³ !ùBûòãíuJâ®Ú¶,
þõ…Žú•´mZa>¯Zo:/wˆÎí5ýî3
¸xêN}ð½²Þ5ØZ“„ϲ²ezJOñYV¶L%’OÄgYÿ—}y&m1LÛ¬v–)âϹÔk\©*ãóO.bÉì7˨êær{ª—O¹¢Âi¥~/ÏåT©º9¥j¼&“\i&Ù)3©œRŠ©ƒIqðuƆܳåÁ§<†ž$S÷Þ™@ጒÏÔ‡žr=~eëH2©.çªLÝ=…™(Í´×U€R¹Ú¼ÞžÊê"û<—AJqò3É_Y¦îôTrµ”˜Äyäë)=wïÊVP»¯©.•÷“K |¯VÒ}åGÄØÃJË0©Ë0Å“aZ”\+Ó,}WêLrw^©Â1—ýcO
J¦¬ô-ýŽâ̧¸ç^gwîÅZ#RÙÄFŠ¹î¥…|p¹£ \¦Ç”€d²7$+hSFR\%Ç4{ü»IÖÊA
J’ v‡)¸MMˆ…9I=¯Vè»Ö¦‰8OZoˆOùEbSã)Llv5|:UIô“X}ƒ±·OOÃÊ<¶÷1µHÄOèÕ¦~äë˜ØtÛw.à=Ïqr{ùèíI‚IÜ%&wž!°¨Ç/ S‹DÜ…£ML›Ú˜Øäüqã5Ïqºµ%Ú“È|â£O0a&RX‘ï+Mžp4ÍT
ašÝlg‰MÔï?sñ>yèÍIfÀæLnø2ý
xÂÏTráÏU¦ùî³’:
1.4.4
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_scale_labels.png 0000644 0001750 0001750 00000001355 10334641470 020314 0000000 0000000 ‰PNG
IHDR P KøµÆ PLTEÿÿÿ ÿÿÀŸŸ` ÀÀÀ{Âÿä tRNS @æØf ƒIDAThí—mŠ1†Çö·¥È½@i¡ç rÿ#T’%ÏG¶È°ždHý²ñÈ_¯ŸØòY–Á宥ú4Äk=Åd¤×û%€%i õœ4ÔŽ¼˜w û¾¡@Áp‘·BíM/J°@>É.q%s¨E[Ó©@Y.sbº¤Œy©ÍÉ
+ÛèMù$ Í¡#ödGv ÅG&;æS€ÖerÝšì‹U=‘Âb¯xdŸåõ˜´ÁãV;ëÈ6@~ ä~ø:¥¼Ò‹—í–e½eòb—øì[v “‘^è)½&ÐSLFzºÜÏ XO]C—ºß^MpÐÕ€>î÷W#ìu9 ë%õŠ4"M H(Ò3øµ0J·1@C\T·!.(ÒŠ4"M H(ÒŠô¿ý
õ;òCœ¾ÅãþÄC–Ÿe€*Чï(Њ¤@PHjTK$
%’?î4Q+Ž€êá&X]dñ:èV؊ãÙ|xqBâ>p j3z€Ð Š™¨Ÿ¡ï"žŽŸq
¥›jQôAÞ„@€{ ‚¥nÏ)º‹¶•òhM{ Ô‚K$^†jSFÅ»+ <Úz Òáf¢~†CX§¶1ÕZîrè¤ú=ëN¯@Å
ÑhŸCG ß!!BËUò³¥
ãf‡š½m
®Ií Êç ëµØjÇ#+ë÷u?]wsk@öD
‹½]@žñ¾-öuázLf¹&ƒû _ì ÔŸC+ͲëƒÔ“C¥Ø
Â
PKj°[FuŒ$Çÿºe¥Þ Ø ™‘þª·ëùpüp˾®wu|](ÒŠôÖ@ñ“õþêÐ_M4øà`A%ž IEND®B`‚ plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__coll__graph.dot 0000644 0001750 0001750 00000001001 10334654217 021762 0000000 0000000 digraph G
{
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
node [fontname="Helvetica",fontsize=10,shape=record];
Node1 [label="PlotMM::HScale",height=0.2,width=0.4,color="white", fillcolor="black", style="filled" fontcolor="white"];
Node2 -> Node1 [dir=back,color="midnightblue",fontsize=10,style="solid",fontname="Helvetica"];
Node2 [label="PlotMM::Scale",height=0.2,width=0.4,color="red", fillcolor="white", style="filled",URL="$class_plot_m_m_1_1_scale.html"];
}
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__coll__graph.md5 0000644 0001750 0001750 00000000040 10334654217 021663 0000000 0000000 9c99a12e3b8e5b341b05f63f13fef8a5 plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__coll__graph.map 0000644 0001750 0001750 00000000351 10073240203 021742 0000000 0000000 base referer
rect $class_plot_m_m_1_1_scale.html 188,109 281,133
rect $class_plot_m_m_1_1_scale_labels.html 6,19 140,43
rect $class_plot_m_m_1_1_double_int_map.html 164,19 305,43
rect $class_plot_m_m_1_1_scale_div.html 329,19 443,43
plotmm-0.1.2/doc/html/class_plot_m_m_1_1_h_scale__coll__graph.png 0000644 0001750 0001750 00000004631 10073240203 021756 0000000 0000000 ‰PNG
IHDR Ä æ ¹bè¥ -PLTEÿÿþ…+³˜2ÍoÃÃÃ;;;___ßßß???ŸŸŸ¿¿¿ ÿÿÿe6§ tRNS @æØf IDATxœíÍRÛVÇó,ÞWö}ƒ¾Fšv‚—™L¼¤8i L³ì¤i`Ù ^†°mìXW3q¦ø[÷z?$Dz$,݃ÄùÏ$DÖ=çÜßý”äƒòˆT^îºæˆU VA€XbˆU VA€Xbô@¤®—¼Íy”¯ !ª·Ô¬_ÝÝœGù
b¢¢G@¼E€XD€¨èQ3¢£\¡YDœÛÃ|ÜLÄü.IÑFh³cìÛ.!ì2aÇã–׈ÊÛ<‚?s0ýGÄõ~ÂŽ¸OfŒÐëYoß<âi™tÄL—äNéyÝlÔkGµœE$ä§(Ô9#ìµÉ ;ÚøUqDŸ\ïFõaޏOa|ÒÎBËd f¹$}ÒÜ#’qÿ[]fO°WOd?&׫ø²Nû6
ÌúpÃkà7^Û&×ôÔŠ¬}$dõ”Z¾ï9Iıo33ÔŽ¸Oæë4
å3¡G{í<ŒKšs|uQOCÌpyÅØhE˜¥/jDžaÿG8sˆ˜öâ¨Þ|îÛÇdr‚û.9gçoжC¶ðÙ¨1tmòo3D~°Ûl\×›
w¯ëIÄ
Úä[xÛŽ¸OÑÌc—G¡•£Bvc
‡e¶Éîmn§!¦»${½çdT¹Ï,}^#BޱL~ŸëEä=¡Qœñ'ßžìÿF›ûìæ ïöO?“.ÙÄämÄ.3f3þ+ëômF'e.~t(;9qŸ1ŒÂ¸¡G›
!QÆÁ{Ì.m.¦»$ø·Î~à`‡Yú¼Fl0û“ö«Ä@eÁɸëÛÃúkZäÙè€Ï‡öæÅôödzÀ½[±É!‰^äaÈIèˆûŒz‘GÁÂðh³Â¢Ìû¿V™]Z/¦»¤K1_DXбf>é¦"ò^Ä]—E|ɽ²ò]rd·Y…º³OùsãÚ¡-ۺ鈢ə#îS ë