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/pmSourcePlotPSFModel.c

    r36858 r40454  
    206206
    207207    graphdata.color = KapaColorByName ("black");
    208     graphdata.ptype = 100;
     208    graphdata.ptype = KAPA_POINT_PAIR_CONNECT;
    209209    graphdata.size = 0.3;
    210     graphdata.style = 2;
     210    graphdata.style = KAPA_PLOT_POINTS;
    211211    KapaPrepPlot (kapa, nMNT, &graphdata);
    212212    KapaPlotVector (kapa, nMNT, xMNT->data.F32, "x");
     
    214214
    215215    graphdata.color = KapaColorByName ("blue");
    216     graphdata.ptype = 100;
     216    graphdata.ptype = KAPA_POINT_PAIR_CONNECT;
    217217    graphdata.size = 0.5;
    218     graphdata.style = 2;
     218    graphdata.style = KAPA_PLOT_POINTS;
    219219    KapaPrepPlot (kapa, nPSF, &graphdata);
    220220    KapaPlotVector (kapa, nPSF, xPSF->data.F32, "x");
     
    222222
    223223    graphdata.color = KapaColorByName ("red");
    224     graphdata.ptype = 100;
     224    graphdata.ptype = KAPA_POINT_PAIR_CONNECT;
    225225    graphdata.size = 0.5;
    226     graphdata.style = 2;
     226    graphdata.style = KAPA_PLOT_POINTS;
    227227    KapaPrepPlot (kapa, nMIN, &graphdata);
    228228    KapaPlotVector (kapa, nMIN, xMIN->data.F32, "x");
Note: See TracChangeset for help on using the changeset viewer.