COIN-OR::LEMON - Graph Library

Changeset 156:c5cdf6690cdf in glemon-0.x for nbtab.cc


Ignore:
Timestamp:
09/28/06 16:32:40 (18 years ago)
Author:
Hegyi Péter
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@2961
Message:

Zoom tracking of nodes is implemented and is switchable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nbtab.cc

    r154 r156  
    219219}
    220220
    221 void NoteBookTab::setNodeView(bool autoscale, double min, double max, double unit)
    222 {
    223   gd_canvas->setNodeView(autoscale, min, max, unit);
    224 }
    225 
    226 void NoteBookTab::getNodeView(bool & autoscale, double& min, double& max, double& unit)
    227 {
    228   gd_canvas->getNodeView(autoscale, min, max, unit);
    229 }
     221void NoteBookTab::setNodeView(bool autoscale, bool zoomtrack, double min, double max, double unit)
     222{
     223  gd_canvas->setNodeView(autoscale, zoomtrack, min, max, unit);
     224}
     225
     226void NoteBookTab::getNodeView(bool & autoscale, bool & zoomtrack, double& min, double& max, double& unit)
     227{
     228  gd_canvas->getNodeView(autoscale, zoomtrack, min, max, unit);
     229}
Note: See TracChangeset for help on using the changeset viewer.