Changeset 36487 for trunk/Ohana
- Timestamp:
- Feb 6, 2014, 12:40:26 PM (12 years ago)
- Location:
- trunk/Ohana/src/kapa2/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/kapa2/src/Graphs.c
r29539 r36487 64 64 graph[0].data.coords.crpix2 = 0.0; 65 65 graph[0].data.coords.cdelt1 = graph[0].data.coords.cdelt2 = 1.0; 66 strcpy (graph[0].data.coords.ctype, " RA---LIN");66 strcpy (graph[0].data.coords.ctype, "DEC--LIN"); 67 67 strcpy (graph[0].data.axis, "2222"); 68 68 strcpy (graph[0].data.ticks, "2222"); -
trunk/Ohana/src/kapa2/src/Image.c
r29938 r36487 18 18 channel->coords.crpix2 = 0.0; 19 19 channel->coords.cdelt1 = channel->coords.cdelt2 = 1.0; 20 strcpy (channel->coords.ctype, " RA---LIN");20 strcpy (channel->coords.ctype, "DEC--LIN"); 21 21 channel->coords.Npolyterms = 0; 22 22 -
trunk/Ohana/src/kapa2/src/bDrawObjects.c
r35416 r36487 315 315 D = scaleSize ? dz*z[i] : ds; 316 316 FillRectangle (buffer, sx, sy, 2*D, 2*D); 317 // plot range saturated by bDrawRectFill 317 318 } 318 319 } … … 335 336 D = scaleSize ? dz*z[i] : ds; 336 337 DrawRectangle (buffer, sx, sy, 2*D, 2*D); 338 // plot range saturated by bDrawRectOpen 337 339 } 338 340 } … … 356 358 DrawLine (buffer, sx - D, sy, sx + D, sy); 357 359 DrawLine (buffer, sx, sy - D, sx, sy + D); 360 // out-of-range points skipped by bDrawPoint 358 361 } 359 362 } … … 377 380 DrawLine (buffer, sx + D, sy - D, sx - D, sy + D); 378 381 DrawLine (buffer, sx - D, sy - D, sx + D, sy + D); 382 // out-of-range points skipped by bDrawPoint 379 383 } 380 384 } … … 398 402 // FillTriangle (buffer, sx - D, sy - 0.58*D, sx + D, sy - 0.58*D, sx, sy + 1.15*D); 399 403 FillTriangle (buffer, sx, sy + 0.58*D, D, -1.73*D); 404 // out-of-range points skipped by bDrawPoint 400 405 } 401 406 } … … 418 423 D = scaleSize ? dz*z[i] : ds; 419 424 OpenTriangle (buffer, sx - D, sy + 0.58*D, sx + D, sy + 0.58*D, sx, sy - 1.15*D); 425 // out-of-range points skipped by bDrawPoint 420 426 } 421 427 } … … 440 446 DrawLine (buffer, sx, sy, sx + D, sy - 0.58*D); 441 447 DrawLine (buffer, sx, sy, sx, sy + 1.15*D); 448 // out-of-range points skipped by bDrawPoint 442 449 } 443 450 } … … 460 467 D = scaleSize ? dz*z[i] : ds; 461 468 DrawCircle (buffer, sx, sy, D); 469 // out-of-range points skipped by bDrawPoint 462 470 } 463 471 } … … 484 492 DrawLine (buffer, sx - 0.58*D, sy + 0.81*D, sx - 0.95*D, sy - 0.31*D); 485 493 DrawLine (buffer, sx - 0.95*D, sy - 0.31*D, sx + 0.00*D, sy - 1.00*D); 494 // out-of-range points skipped by bDrawPoint 486 495 } 487 496 } … … 509 518 DrawLine (buffer, sx + 0.50*D, sy - 0.87*D, sx - 0.50*D, sy - 0.87*D); 510 519 DrawLine (buffer, sx - 0.50*D, sy - 0.87*D, sx - D, sy); 520 // out-of-range points skipped by bDrawPoint 511 521 } 512 522 } … … 529 539 D = scaleSize ? dz*z[i] : ds; 530 540 FillCircle (buffer, sx, sy, D); 541 // out-of-range points skipped by bDrawLineHorizontal 531 542 } 532 543 }
Note:
See TracChangeset
for help on using the changeset viewer.
