Changeset 492 for trunk/excledt.tcl
- Timestamp:
- Dec 4, 2009 5:07:04 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/excledt.tcl
- Property rcs:date changed from 2001/11/07 18:12:46 to 2001/12/16 18:06:53
- Property rcs:lines changed from +32 -30 to +7 -4
- Property rcs:rev changed from 1.6 to 1.7
r483 r492 669 669 $graph(plot) marker create line -under 1 -name excl[incr i] \ 670 670 -coords "$x1 -Inf $x2 -Inf" \ 671 -outline$graph(color_excl) -linewidth 3671 $graph(MarkerColorOpt) $graph(color_excl) -linewidth 3 672 672 # copy any points that should be excluded 673 673 set l [lsort -integer [xvec search $x1 $x2]] … … 1481 1481 } 1482 1482 foreach item {xmin ymin xmax ymax} { 1483 set $item {} 1484 catch {set $item [expr $graph($item)]} 1483 if {[catch {expr $graph($item)}]} { 1484 set $item "" 1485 } else { 1486 set $item $graph($item) 1487 } 1485 1488 } 1486 1489 # reset the zoomstack
Note: See TracChangeset
for help on using the changeset viewer.