Overview
| Comment: | Improved handling of new plot windows - multiplot and other options affect the new window instead of always controlling the first. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ae9d5867bb8b0b957ea977798dec8e35 |
| User & Date: | geraint@users.sourceforge.net on 2002-07-14 19:02:51.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-07-15
| ||
| 12:50:51 |
The solution vector (_ui) is no longer re-zeroed each step. Retaining the previous value appears to give dramatically better performance. Messages to the console are now buffered through clog instead of using cerr. check-in: eb84d8e84b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-07-14
| ||
| 19:02:51 | Improved handling of new plot windows - multiplot and other options affect the new window instead of always controlling the first. check-in: ae9d5867bb user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-07-12
| ||
| 15:18:55 | Added xMTT to menubar. check-in: d892e06ada user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2gnuplot_txt2wish
from [81550f7f79]
to [0b8b18566d].
| ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | + |
#!/bin/sh
# Next line replaces shell with wish\\
exec wish "\$0" "\$@"
## main window
wm title . "MTT Viewer: ${sys}"
set parameter ""
set windownum 0
# menu bar
canvas .menubar
menubutton .menubar.file -text "File" -menu .menubar.file.menu
menu .menubar.file.menu
.menubar.file.menu add command -label "Open (Gnuplot plot file)" -command open_plotfile
|
| ︙ | |||
167 168 169 170 171 172 173 | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | - + - + + + + - + + |
## call gnuplot
proc "plot_var" "title column" {
set_plot_options
puts "set term X11"
global plottype
if {"\$plottype" == "Multi Plot"} {
|
| ︙ |