Changeset 40165 for trunk/Ohana/src/opihi/cmd.astro
- Timestamp:
- Oct 11, 2017, 10:10:18 AM (9 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
src/opihi/cmd.astro/cdot.c (modified) (1 diff)
-
src/opihi/cmd.astro/cgrid.c (modified) (1 diff)
-
src/opihi/cmd.astro/cline.c (modified) (1 diff)
-
src/opihi/cmd.astro/czplot.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
- Property svn:mergeinfo changed
/branches/eam_branches/ohana.20170822 (added) merged: 40122-40125,40141-40146,40155-40156,40158-40159,40163-40164
- Property svn:mergeinfo changed
-
trunk/Ohana/src/opihi/cmd.astro/cdot.c
r34088 r40165 22 22 23 23 /* set point style and errorbar mode (these are NOT sticky) */ 24 graphmode.style = 2;24 graphmode.style = KAPA_PLOT_POINTS; /* points */ 25 25 graphmode.etype = 0; 26 26 -
trunk/Ohana/src/opihi/cmd.astro/cgrid.c
r34584 r40165 276 276 /* send the line segments as connect-points */ 277 277 Xvec.Nelements = Yvec.Nelements = N; 278 graphmode.style = 2; /* points */279 graphmode.ptype = 100; /* connect a pair*/278 graphmode.style = KAPA_PLOT_POINTS; /* points */ 279 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 280 280 graphmode.etype = 0; 281 281 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
trunk/Ohana/src/opihi/cmd.astro/cline.c
r34088 r40165 20 20 21 21 /* set point style and errorbar mode (these are NOT sticky) */ 22 graphmode.style = 0;22 graphmode.style = KAPA_PLOT_CONNECT; 23 23 graphmode.etype = 0; 24 24 -
trunk/Ohana/src/opihi/cmd.astro/czplot.c
r35757 r40165 111 111 Zvec.Nelements = Npts; 112 112 113 graphmode.style = 2;113 graphmode.style = KAPA_PLOT_POINTS; /* points */ 114 114 graphmode.size = -1; /* point size determined by Zvec */ 115 115 graphmode.etype = 0; … … 236 236 Zvec.Nelements = Npts; 237 237 238 graphmode.style = 2;238 graphmode.style = KAPA_PLOT_POINTS; 239 239 graphmode.color = -1; /* point color determined by Zvec */ 240 240 graphmode.etype = 0;
Note:
See TracChangeset
for help on using the changeset viewer.
