Changeset 40454
- Timestamp:
- Jun 23, 2018, 11:21:41 AM (8 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 10 edited
-
astrom/pmAstrometryVisual.c (modified) (29 diffs)
-
detrend/pmDark.c (modified) (2 diffs)
-
extras/pmKapaPlots.c (modified) (1 diff)
-
extras/pmVisual.c (modified) (1 diff)
-
imcombine/pmReadoutCombine.c (modified) (3 diffs)
-
imcombine/pmSubtractionVisual.c (modified) (4 diffs)
-
objects/pmSourcePlotApResid.c (modified) (1 diff)
-
objects/pmSourcePlotMoments.c (modified) (2 diffs)
-
objects/pmSourcePlotPSFModel.c (modified) (3 diffs)
-
objects/pmSourceVisual.c (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmAstrometryVisual.c
r40083 r40454 72 72 73 73 graphdata.color = KapaColorByName ("black"); 74 graphdata.ptype = 7;74 graphdata.ptype = KAPA_POINT_BOX_SOLID; 75 75 graphdata.size = 0.5; 76 graphdata.style = 2;76 graphdata.style = KAPA_PLOT_POINTS; 77 77 78 78 section.dx = 0.5; … … 232 232 233 233 graphdata.color = KapaColorByName ("black"); 234 graphdata.ptype = 7;234 graphdata.ptype = KAPA_POINT_BOX_SOLID; 235 235 graphdata.size = 0.5; 236 graphdata.style = 2;236 graphdata.style = KAPA_PLOT_POINTS; 237 237 238 238 // initialize and populate plot vectors … … 325 325 "Reference Star Luminosity Function, Shifted Raw Fit, and Cutoff", 326 326 KAPA_LABEL_XP); 327 graphdata.color =KapaColorByName("black");328 graphdata.style = 1;327 graphdata.color = KapaColorByName("black"); 328 graphdata.style = KAPA_PLOT_HISTOGRAM; 329 329 KapaPrepPlot (kapa1, lnMag->n, &graphdata); 330 330 KapaPlotVector(kapa1, lnMag->n, Mag->data.F32, "x"); … … 332 332 333 333 // Overplot fit 334 graphdata.style =0;334 graphdata.style = KAPA_PLOT_CONNECT; 335 335 KapaPrepPlot(kapa1,2,&graphdata); 336 336 KapaPlotVector(kapa1, 2, x, "x"); … … 391 391 psFree(section.name); 392 392 393 graphdata.ptype = 7;393 graphdata.ptype = KAPA_POINT_BOX_SOLID; 394 394 graphdata.size = 0.5; 395 graphdata.style = 2;395 graphdata.style = KAPA_PLOT_POINTS; 396 396 graphdata.color = KapaColorByName ("black"); 397 397 KapaClearPlots(kapa1); … … 441 441 442 442 graphdata.color = KapaColorByName ("red"); 443 graphdata.style = 0;443 graphdata.style = KAPA_PLOT_CONNECT; 444 444 445 445 // overplot clumpy regions excluded from analysis … … 507 507 KapaInitGraph (&graphdata); 508 508 KapaClearPlots (kapa1); 509 graphdata.ptype = 2;510 graphdata.style = 2;509 graphdata.ptype = KAPA_POINT_CROSS; 510 graphdata.style = KAPA_PLOT_POINTS; 511 511 512 512 psVector *xNew = psVectorAllocEmpty (xOld->n, PS_TYPE_F32); … … 556 556 KapaPlotVector (kapa1, xOld->n, yOld->data.F32, "y"); 557 557 558 graphdata.ptype = 1;558 graphdata.ptype = KAPA_POINT_BOX_OPEN; 559 559 graphdata.color = KapaColorByName("red"); 560 560 KapaPrepPlot (kapa1, xNew->n, &graphdata); … … 590 590 591 591 graphdata.color = KapaColorByName ("black"); 592 graphdata.ptype = 2;592 graphdata.ptype = KAPA_POINT_CROSS; 593 593 graphdata.size = 0.5; 594 graphdata.style = 2;594 graphdata.style = KAPA_PLOT_POINTS; 595 595 596 596 section.dx = 0.4; … … 619 619 // New Corners 620 620 graphdata.color = KapaColorByName("red"); 621 graphdata.ptype = 7;621 graphdata.ptype = KAPA_POINT_BOX_SOLID; 622 622 graphdata.size = 1.5; 623 623 KapaPrepPlot (kapa1, cornerPn->n, &graphdata); … … 812 812 KapaSendLabel (kapa1, "pmAstromGridAngle residuals. Box: Correlation Peak.", 813 813 KAPA_LABEL_XP); 814 graphdata.style = 2;815 graphdata.ptype = 0;814 graphdata.style = KAPA_PLOT_POINTS; 815 graphdata.ptype = KAPA_POINT_BOX_SOLID; 816 816 graphdata.size = 0.4; 817 817 graphdata.color = KapaColorByName ("black"); … … 861 861 offsetY - 0.5 * Scale}; 862 862 graphdata.color = KapaColorByName("red"); 863 graphdata.style = 0;863 graphdata.style = KAPA_PLOT_CONNECT; 864 864 graphdata.size = 1.0; 865 865 KapaPrepPlot(kapa1, 5, &graphdata); … … 873 873 KapaSetSection(kapa1, §ionX); 874 874 graphdata.color = KapaColorByName("black"); 875 graphdata.ptype = 1;876 graphdata.style = 1;875 graphdata.ptype = KAPA_POINT_BOX_OPEN; 876 graphdata.style = KAPA_PLOT_HISTOGRAM; 877 877 graphdata.ymin = 0; 878 878 graphdata.ymax = maxHorizontalSlice + 0.5; … … 887 887 float xslice[2] = {offsetX - Scale / 2., offsetX - Scale / 2.}; 888 888 float yslice[2] = {-5, 100}; 889 graphdata.style = 0;889 graphdata.style = KAPA_PLOT_CONNECT; 890 890 graphdata.color = KapaColorByName("red"); 891 891 KapaPrepPlot(kapa1, 2, &graphdata); … … 896 896 KapaSetSection(kapa1, §ionY); 897 897 graphdata.color = KapaColorByName("black"); 898 graphdata.ptype = 1;899 graphdata.style = 1;898 graphdata.ptype = KAPA_POINT_BOX_OPEN; 899 graphdata.style = KAPA_PLOT_HISTOGRAM; 900 900 graphdata.ymin = -maxOffpix; 901 901 graphdata.ymax = maxOffpix; … … 912 912 yslice[0] = yslice[1] = offsetY - Scale / 2.; 913 913 xslice[0] = -5; xslice[1] = 100; 914 graphdata.style = 0;914 graphdata.style = KAPA_PLOT_CONNECT; 915 915 graphdata.color = KapaColorByName("red"); 916 916 KapaPrepPlot(kapa1, 2, &graphdata); … … 982 982 983 983 // the point size will be scaled from the z vector 984 graphdata.style = 2;985 graphdata.ptype = 2;984 graphdata.style = KAPA_PLOT_POINTS; 985 graphdata.ptype = KAPA_POINT_CROSS; 986 986 graphdata.size = -1; 987 987 graphdata.color = KapaColorByName ("black"); … … 1019 1019 1020 1020 // the point size will be scaled from the z vector 1021 graphdata.style = 2;1022 graphdata.ptype = 7;1021 graphdata.style = KAPA_PLOT_POINTS; 1022 graphdata.ptype = KAPA_POINT_CIRCLE_OPEN; 1023 1023 graphdata.size = -1; 1024 1024 graphdata.color = KapaColorByName ("red"); … … 1079 1079 KapaSendLabel (kapa3, "Horizontal Profile", 1080 1080 KAPA_LABEL_XP); 1081 graphdata.style = 1;1082 graphdata.ptype = 0;1081 graphdata.style = KAPA_PLOT_HISTOGRAM; 1082 graphdata.ptype = KAPA_POINT_BOX_SOLID; 1083 1083 graphdata.size = 0.4; 1084 1084 graphdata.color = KapaColorByName ("black"); … … 1107 1107 KapaSendLabel (kapa3, "Vertical Profile", 1108 1108 KAPA_LABEL_XP); 1109 graphdata.style = 1;1110 graphdata.ptype = 0;1109 graphdata.style = KAPA_PLOT_HISTOGRAM; 1110 graphdata.ptype = KAPA_POINT_BOX_SOLID; 1111 1111 graphdata.size = 0.4; 1112 1112 … … 1150 1150 1151 1151 graphdata.color = KapaColorByName ("black"); 1152 graphdata.ptype = 7;1152 graphdata.ptype = KAPA_POINT_CIRCLE_OPEN; 1153 1153 graphdata.size = 0.5; 1154 graphdata.style = 2;1154 graphdata.style = KAPA_PLOT_POINTS; 1155 1155 1156 1156 section.dx = 0.4; … … 1317 1317 1318 1318 // X vs Y by mag (ref) 1319 graphdata.color = KapaColorByName ("red");1320 graphdata.ptype = 7;1321 graphdata.style = 2;1322 1323 1319 xVec = psVectorAlloc (refstars->n, PS_TYPE_F32); 1324 1320 yVec = psVectorAlloc (refstars->n, PS_TYPE_F32); … … 1338 1334 } 1339 1335 xVec->n = yVec->n = zVec->n = n; 1336 1337 graphdata.color = KapaColorByName ("red"); 1338 graphdata.ptype = KAPA_POINT_X; 1339 graphdata.style = KAPA_PLOT_POINTS; 1340 1340 1341 pmVisualTriplePlot (kapa2, &graphdata, xVec, yVec, zVec, false); 1341 1342 … … 1356 1357 1357 1358 // X vs Y by mag (raw) 1358 graphdata.color = KapaColorByName ("black");1359 graphdata.ptype = 7;1360 graphdata.style = 2;1361 1362 1359 psFree (xVec); 1363 1360 psFree (yVec); … … 1381 1378 } 1382 1379 xVec->n = yVec->n = zVec->n = n; 1380 1381 graphdata.color = KapaColorByName ("black"); 1382 graphdata.ptype = KAPA_POINT_BOX_OPEN; 1383 graphdata.style = KAPA_PLOT_POINTS; 1383 1384 pmVisualTripleOverplot (kapa2, &graphdata, xVec, yVec, zVec, false); 1384 1385 … … 1392 1393 zVec = psVectorAlloc (match->n, PS_TYPE_F32); 1393 1394 1394 graphdata.ptype = 2;1395 graphdata.color = KapaColorByName ("blue");1396 1395 n = 0; 1397 1396 for (int i = 0; i < match->n; i++) { … … 1411 1410 xVec->n = yVec->n = zVec->n = n; 1412 1411 fprintf (stderr, "plotting %d matched stars (raw = blue)\n", n); 1412 1413 graphdata.ptype = KAPA_POINT_CROSS; 1414 graphdata.color = KapaColorByName ("blue"); 1413 1415 pmVisualTripleOverplot (kapa2, &graphdata, xVec, yVec, zVec, false); 1414 1416 1415 1417 if (0) { 1416 graphdata.ptype = 3;1418 graphdata.ptype = KAPA_POINT_X; 1417 1419 graphdata.color = KapaColorByName ("green"); 1418 1420 n = 0; … … 1449 1451 KapaClearPlots (kapa3); 1450 1452 1451 // X vs Y by mag (ref) 1452 graphdata.color = KapaColorByName ("black"); 1453 graphdata.ptype = 2; 1454 graphdata.style = 2; 1455 graphdata.size = 1; 1453 // mag vs dX 1456 1454 1457 1455 section.x = 0.0; … … 1486 1484 KapaSendLabel(kapa1, "raw mag", KAPA_LABEL_XM); 1487 1485 KapaSendLabel(kapa1, "dY", KAPA_LABEL_YM); 1486 1487 graphdata.color = KapaColorByName ("blue"); 1488 graphdata.ptype = KAPA_POINT_TRIANGLE_OPEN; 1489 graphdata.style = KAPA_PLOT_POINTS; 1490 graphdata.size = 2; 1488 1491 1489 1492 KapaPrepPlot (kapa3, xVec->n, &graphdata); -
trunk/psModules/src/detrend/pmDark.c
r35586 r40454 1158 1158 1159 1159 graphdata.color = KapaColorByName("black"); 1160 graphdata.style = 2;1161 graphdata.ptype = 2;1160 graphdata.style = KAPA_PLOT_POINTS; 1161 graphdata.ptype = KAPA_POINT_CROSS; 1162 1162 KapaPrepPlot (kapa[i], xSub->n, &graphdata); 1163 1163 KapaPlotVector(kapa[i], xSub->n, xSub->data.F32, "x"); … … 1190 1190 KapaGetGraphData(kapa[i], &graphdata); 1191 1191 graphdata.color = KapaColorByName("red"); 1192 graphdata.style = 2;1193 graphdata.ptype = 7;1192 graphdata.style = KAPA_PLOT_POINTS; 1193 graphdata.ptype = KAPA_POINT_CIRCLE_OPEN; 1194 1194 KapaPrepPlot (kapa[i], xFit->n, &graphdata); 1195 1195 KapaPlotVector(kapa[i], xFit->n, xFit->data.F32, "x"); -
trunk/psModules/src/extras/pmKapaPlots.c
r23487 r40454 136 136 137 137 graphdata.color = KapaColorByName ("black"); 138 graphdata.ptype = 0;138 graphdata.ptype = KAPA_POINT_BOX_SOLID; 139 139 graphdata.size = 0.5; 140 graphdata.style = 2;140 graphdata.style = KAPA_PLOT_POINTS; 141 141 KapaPrepPlot (kapa, xVec->n, &graphdata); 142 142 KapaPlotVector (kapa, xVec->n, xVec->data.F32, "x"); -
trunk/psModules/src/extras/pmVisual.c
r36856 r40454 262 262 263 263 // the point size will be scaled from the z vector 264 graphdata->ptype = 7;265 graphdata->style = 2;264 graphdata->ptype = KAPA_POINT_CIRCLE_OPEN; 265 graphdata->style = KAPA_PLOT_POINTS; 266 266 graphdata->size = -1; 267 267 KapaPrepPlot (kapid, xVec->n, graphdata); -
trunk/psModules/src/imcombine/pmReadoutCombine.c
r30622 r40454 505 505 506 506 graphdata.color = KapaColorByName("black"); 507 graphdata.style = 2;508 graphdata.ptype = 2;507 graphdata.style = KAPA_PLOT_POINTS; 508 graphdata.ptype = KAPA_POINT_CROSS; 509 509 KapaPrepPlot (kapa, xSub->n, &graphdata); 510 510 KapaPlotVector(kapa, xSub->n, xSub->data.F32, "x"); … … 512 512 513 513 graphdata.color = KapaColorByName("red"); 514 graphdata.style = 2;515 graphdata.ptype = 7;514 graphdata.style = KAPA_PLOT_POINTS; 515 graphdata.ptype = KAPA_POINT_CIRCLE_OPEN; 516 516 KapaPrepPlot (kapa, xAll->n, &graphdata); 517 517 KapaPlotVector(kapa, xAll->n, xAll->data.F32, "x"); … … 519 519 520 520 graphdata.color = KapaColorByName("blue"); 521 graphdata.style = 0;522 graphdata.ptype = 7;521 graphdata.style = KAPA_PLOT_CONNECT; 522 graphdata.ptype = KAPA_POINT_CIRCLE_OPEN; 523 523 KapaPrepPlot (kapa, 2, &graphdata); 524 524 KapaPlotVector(kapa, 2, xline, "x"); -
trunk/psModules/src/imcombine/pmSubtractionVisual.c
r35768 r40454 908 908 909 909 graphdata.color = KapaColorByName ("black"); 910 graphdata.ptype = 2;910 graphdata.ptype = KAPA_POINT_CROSS; 911 911 graphdata.size = 0.5; 912 graphdata.style = 2;912 graphdata.style = KAPA_PLOT_POINTS; 913 913 graphdata.etype |= 0x01; 914 914 … … 974 974 975 975 graphdata.color = KapaColorByName ("black"); 976 graphdata.ptype = 2;976 graphdata.ptype = KAPA_POINT_CROSS; 977 977 graphdata.size = 0.5; 978 graphdata.style = 2;978 graphdata.style = KAPA_PLOT_POINTS; 979 979 980 980 KapaPrepPlot (kapa3, lflx->n, &graphdata); … … 1001 1001 1002 1002 graphdata.color = KapaColorByName ("black"); 1003 graphdata.ptype = 2;1003 graphdata.ptype = KAPA_POINT_CROSS; 1004 1004 graphdata.size = 0.5; 1005 graphdata.style = 2;1005 graphdata.style = KAPA_PLOT_POINTS; 1006 1006 1007 1007 KapaPrepPlot (kapa3, lflx->n, &graphdata); … … 1028 1028 1029 1029 graphdata.color = KapaColorByName ("black"); 1030 graphdata.ptype = 2;1030 graphdata.ptype = KAPA_POINT_CROSS; 1031 1031 graphdata.size = 0.5; 1032 graphdata.style = 2;1032 graphdata.style = KAPA_PLOT_POINTS; 1033 1033 1034 1034 KapaPrepPlot (kapa3, lflx->n, &graphdata); -
trunk/psModules/src/objects/pmSourcePlotApResid.c
r36856 r40454 153 153 154 154 graphdata.color = KapaColorByName ("black"); 155 graphdata.ptype = 2;155 graphdata.ptype = KAPA_POINT_CROSS; 156 156 graphdata.size = 0.5; 157 graphdata.style = 2;157 graphdata.style = KAPA_PLOT_POINTS; 158 158 KapaPrepPlot (kapa, n, &graphdata); 159 159 KapaPlotVector (kapa, n, x->data.F32, "x"); -
trunk/psModules/src/objects/pmSourcePlotMoments.c
r36856 r40454 153 153 154 154 graphdata.color = KapaColorByName ("black"); 155 graphdata.ptype = 0;155 graphdata.ptype = KAPA_POINT_BOX_SOLID; 156 156 graphdata.size = 0.3; 157 graphdata.style = 2;157 graphdata.style = KAPA_PLOT_POINTS; 158 158 KapaPrepPlot (kapa, nF, &graphdata); 159 159 KapaPlotVector (kapa, nF, xFaint->data.F32, "x"); … … 161 161 162 162 graphdata.color = KapaColorByName ("red"); 163 graphdata.ptype = 2;163 graphdata.ptype = KAPA_POINT_CROSS; 164 164 graphdata.size = 0.5; 165 graphdata.style = 2;165 graphdata.style = KAPA_PLOT_POINTS; 166 166 KapaPrepPlot (kapa, nB, &graphdata); 167 167 KapaPlotVector (kapa, nB, xBright->data.F32, "x"); -
trunk/psModules/src/objects/pmSourcePlotPSFModel.c
r36858 r40454 206 206 207 207 graphdata.color = KapaColorByName ("black"); 208 graphdata.ptype = 100;208 graphdata.ptype = KAPA_POINT_PAIR_CONNECT; 209 209 graphdata.size = 0.3; 210 graphdata.style = 2;210 graphdata.style = KAPA_PLOT_POINTS; 211 211 KapaPrepPlot (kapa, nMNT, &graphdata); 212 212 KapaPlotVector (kapa, nMNT, xMNT->data.F32, "x"); … … 214 214 215 215 graphdata.color = KapaColorByName ("blue"); 216 graphdata.ptype = 100;216 graphdata.ptype = KAPA_POINT_PAIR_CONNECT; 217 217 graphdata.size = 0.5; 218 graphdata.style = 2;218 graphdata.style = KAPA_PLOT_POINTS; 219 219 KapaPrepPlot (kapa, nPSF, &graphdata); 220 220 KapaPlotVector (kapa, nPSF, xPSF->data.F32, "x"); … … 222 222 223 223 graphdata.color = KapaColorByName ("red"); 224 graphdata.ptype = 100;224 graphdata.ptype = KAPA_POINT_PAIR_CONNECT; 225 225 graphdata.size = 0.5; 226 graphdata.style = 2;226 graphdata.style = KAPA_PLOT_POINTS; 227 227 KapaPrepPlot (kapa, nMIN, &graphdata); 228 228 KapaPlotVector (kapa, nMIN, xMIN->data.F32, "x"); -
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.
