Changeset 27713
- Timestamp:
- Apr 20, 2010, 10:10:43 AM (16 years ago)
- Location:
- branches/eam_branches/Ohana.20100407/src
- Files:
-
- 5 edited
-
kapa2/doc/mark.issues.txt (modified) (1 diff)
-
kapa2/src/Graphs.c (modified) (1 diff)
-
kapa2/src/SetGraphData.c (modified) (2 diffs)
-
libkapa/src/IOfuncs.c (modified) (1 diff)
-
opihi/cmd.data/box.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/Ohana.20100407/src/kapa2/doc/mark.issues.txt
r27693 r27713 1 1 2 3 * need consistency of graph defaults : axis, tick, labels should come from kapa 4 * clear should erase current plot 2 5 3 6 -> The "plot" command needs to be fixed so that boundaries of contours do -
branches/eam_branches/Ohana.20100407/src/kapa2/src/Graphs.c
r27693 r27713 22 22 graph[0].axis[i].pad = NAN; 23 23 } 24 graph[0].data.ticktextPad = NAN; 25 graph[0].data.labelPad = NAN; 26 graph[0].data.padXm = NAN; 27 graph[0].data.padXp = NAN; 28 graph[0].data.padYm = NAN; 29 graph[0].data.padYp = NAN; 30 24 31 for (i = 0; i < 8; i++) { 25 32 strcpy (graph[0].label[i].text, ""); -
branches/eam_branches/Ohana.20100407/src/kapa2/src/SetGraphData.c
r27693 r27713 14 14 if (section->graph == NULL) { 15 15 section->graph = InitGraph (); 16 fprintf (stderr, "pad: %f %f %f\n", section->graph->axis[0].pad, section->graph->axis[0].labelPad, section->graph->axis[0].ticktextPad); 16 17 SetSectionSizes (section); 18 fprintf (stderr, "pad: %f %f %f\n", section->graph->axis[0].pad, section->graph->axis[0].labelPad, section->graph->axis[0].ticktextPad); 17 19 } 18 20 graph = section->graph; 21 fprintf (stderr, "pad: %f %f %f\n", section->graph->axis[0].pad, section->graph->axis[0].labelPad, section->graph->axis[0].ticktextPad); 19 22 20 23 // get graph data from client … … 36 39 &graph[0].data.padYm, 37 40 &graph[0].data.padYp); 41 42 for (i = 0; i < 4; i++) { 43 graph[0].axis[i].ticktextPad = graph[0].data.ticktextPad; 44 graph[0].axis[i].labelPad = graph[0].data.labelPad; 45 } 46 graph[0].axis[0].pad = graph[0].data.padXm; 47 graph[0].axis[1].pad = graph[0].data.padYm; 48 graph[0].axis[2].pad = graph[0].data.padXp; 49 graph[0].axis[3].pad = graph[0].data.padYp; 38 50 39 51 KiiScanMessage (sock, "%lf %lf %lf %lf", -
branches/eam_branches/Ohana.20100407/src/libkapa/src/IOfuncs.c
r27588 r27713 1 1 # include <kapa_internal.h> 2 # define DEBUG 02 # define DEBUG 1 3 3 4 4 /** these function expect to operate with a BLOCKing socket **/ -
branches/eam_branches/Ohana.20100407/src/opihi/cmd.data/box.c
r27693 r27713 40 40 } 41 41 42 // strcpy (graphmode.ticks, "2222"); 42 // XXX need to get the current values from kapa 43 strcpy (graphmode.ticks, "2222"); 43 44 if ((N = get_argument (argc, argv, "-ticks"))) { 44 45 remove_argument (N, &argc, argv); … … 51 52 } 52 53 53 //strcpy (graphmode.labels, "2222");54 strcpy (graphmode.labels, "2222"); 54 55 if ((N = get_argument (argc, argv, "-labels"))) { 55 56 remove_argument (N, &argc, argv); … … 62 63 } 63 64 64 //strcpy (graphmode.axis, "2222");65 strcpy (graphmode.axis, "2222"); 65 66 if ((N = get_argument (argc, argv, "-axis"))) { 66 67 remove_argument (N, &argc, argv);
Note:
See TracChangeset
for help on using the changeset viewer.
