IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 23, 2018, 11:21:41 AM (8 years ago)
Author:
eugene
Message:

changing from numerical values to named enums for graphdata elements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSourcePlotMoments.c

    r36856 r40454  
    153153
    154154    graphdata.color = KapaColorByName ("black");
    155     graphdata.ptype = 0;
     155    graphdata.ptype = KAPA_POINT_BOX_SOLID;
    156156    graphdata.size = 0.3;
    157     graphdata.style = 2;
     157    graphdata.style = KAPA_PLOT_POINTS;
    158158    KapaPrepPlot (kapa, nF, &graphdata);
    159159    KapaPlotVector (kapa, nF, xFaint->data.F32, "x");
     
    161161
    162162    graphdata.color = KapaColorByName ("red");
    163     graphdata.ptype = 2;
     163    graphdata.ptype = KAPA_POINT_CROSS;
    164164    graphdata.size = 0.5;
    165     graphdata.style = 2;
     165    graphdata.style = KAPA_PLOT_POINTS;
    166166    KapaPrepPlot (kapa, nB, &graphdata);
    167167    KapaPlotVector (kapa, nB, xBright->data.F32, "x");
Note: See TracChangeset for help on using the changeset viewer.