Changeset 40454 for trunk/psModules/src/objects/pmSourceVisual.c
- Timestamp:
- Jun 23, 2018, 11:21:41 AM (8 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/objects/pmSourceVisual.c (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmSourceVisual.c
r36856 r40454 109 109 110 110 graphdata.color = KapaColorByName ("black"); 111 graphdata.ptype = 2;111 graphdata.ptype = KAPA_POINT_CROSS; 112 112 graphdata.size = 0.5; 113 graphdata.style = 2;113 graphdata.style = KAPA_PLOT_POINTS; 114 114 graphdata.etype |= 0x01; 115 115 … … 200 200 201 201 graphdata.color = KapaColorByName ("black"); 202 graphdata.ptype = 2;202 graphdata.ptype = KAPA_POINT_CROSS; 203 203 graphdata.size = 0.5; 204 graphdata.style = 2;204 graphdata.style = KAPA_PLOT_POINTS; 205 205 graphdata.etype |= 0x01; 206 206 … … 265 265 266 266 graphdata.color = KapaColorByName ("black"); 267 graphdata.ptype = 2;267 graphdata.ptype = KAPA_POINT_CROSS; 268 268 graphdata.size = 0.5; 269 graphdata.style = 2;269 graphdata.style = KAPA_PLOT_POINTS; 270 270 graphdata.etype |= 0x01; 271 271 … … 469 469 KapaSendLabel (kapa1, "Model Param", KAPA_LABEL_YM); 470 470 471 graphdata.ptype = 2;471 graphdata.ptype = KAPA_POINT_CROSS; 472 472 graphdata.size = 1.0; 473 graphdata.style = 2;473 graphdata.style = KAPA_PLOT_POINTS; 474 474 KapaPrepPlot (kapa1, x->n, &graphdata); 475 475 KapaPlotVector (kapa1, x->n, x->data.F32, "x"); … … 477 477 478 478 graphdata.color = KapaColorByName ("red"); 479 graphdata.ptype = 1;479 graphdata.ptype = KAPA_POINT_BOX_OPEN; 480 480 KapaPrepPlot (kapa1, xm->n, &graphdata); 481 481 KapaPlotVector (kapa1, xm->n, xm->data.F32, "x"); … … 483 483 484 484 graphdata.color = KapaColorByName ("blue"); 485 graphdata.ptype = 1;485 graphdata.ptype = KAPA_POINT_BOX_OPEN; 486 486 KapaPrepPlot (kapa1, x->n, &graphdata); 487 487 KapaPlotVector (kapa1, x->n, x->data.F32, "x"); … … 519 519 KapaSendLabel (kapa1, "Model Param", KAPA_LABEL_YM); 520 520 521 graphdata.ptype = 2;521 graphdata.ptype = KAPA_POINT_CROSS; 522 522 graphdata.size = 1.0; 523 graphdata.style = 2;523 graphdata.style = KAPA_PLOT_POINTS; 524 524 KapaPrepPlot (kapa1, y->n, &graphdata); 525 525 KapaPlotVector (kapa1, y->n, y->data.F32, "x"); … … 527 527 528 528 graphdata.color = KapaColorByName ("red"); 529 graphdata.ptype = 1;529 graphdata.ptype = KAPA_POINT_BOX_OPEN; 530 530 KapaPrepPlot (kapa1, xm->n, &graphdata); 531 531 KapaPlotVector (kapa1, xm->n, ym->data.F32, "x"); … … 533 533 534 534 graphdata.color = KapaColorByName ("blue"); 535 graphdata.ptype = 1;535 graphdata.ptype = KAPA_POINT_BOX_OPEN; 536 536 KapaPrepPlot (kapa1, y->n, &graphdata); 537 537 KapaPlotVector (kapa1, y->n, y->data.F32, "x"); … … 612 612 613 613 graphdata->color = KapaColorByName ("black"); 614 graphdata->ptype = 100;614 graphdata->ptype = KAPA_POINT_PAIR_CONNECT; 615 615 graphdata->size = 0.5; 616 graphdata->style = 2;616 graphdata->style = KAPA_PLOT_POINTS; 617 617 KapaPrepPlot (myKapa, xv->n, graphdata); 618 618 KapaPlotVector (myKapa, xv->n, xv->data.F32, "x"); … … 620 620 621 621 graphdata->color = KapaColorByName ("blue"); 622 graphdata->ptype = 0;622 graphdata->ptype = KAPA_POINT_BOX_OPEN; 623 623 graphdata->size = 1.5; 624 graphdata->style = 2;624 graphdata->style = KAPA_PLOT_POINTS; 625 625 KapaPrepPlot (myKapa, xv->n, graphdata); 626 626 KapaPlotVector (myKapa, xv->n, xv->data.F32, "x"); … … 652 652 653 653 graphdata->color = KapaColorByName ("red"); 654 graphdata->ptype = 100;654 graphdata->ptype = KAPA_POINT_PAIR_CONNECT; 655 655 graphdata->size = 0.5; 656 graphdata->style = 2;656 graphdata->style = KAPA_PLOT_POINTS; 657 657 KapaPrepPlot (myKapa, xv->n, graphdata); 658 658 KapaPlotVector (myKapa, xv->n, xv->data.F32, "x");
Note:
See TracChangeset
for help on using the changeset viewer.
