Changeset 40822
- Timestamp:
- Jul 2, 2019, 3:06:14 PM (7 years ago)
- Location:
- branches/eam_branches/ohana.20190329/src/kapa2/src
- Files:
-
- 2 edited
-
SetUpGraphic.c (modified) (1 diff)
-
bDrawIt.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20190329/src/kapa2/src/SetUpGraphic.c
r40782 r40822 91 91 92 92 if (isfinite(sigma)) { 93 if ((sigma < 10.0) && (sigma >= 0.0)) {93 if ((sigma <= 1.1) && (sigma >= 0.0)) { 94 94 graphic->smooth_sigma = sigma; 95 95 } -
branches/eam_branches/ohana.20190329/src/kapa2/src/bDrawIt.c
r40780 r40822 36 36 // apply anti-aliasing only to the graph 37 37 if (graphic->smooth_sigma > 0.0) { 38 // XXX getting a strange value39 graphic->smooth_sigma = M AX (graphic->smooth_sigma, 5.0);38 // anything > 1.1 blurs the image too much 39 graphic->smooth_sigma = MIN (graphic->smooth_sigma, 1.1); 40 40 bDrawSmooth (graph, graphic->smooth_sigma); 41 41 }
Note:
See TracChangeset
for help on using the changeset viewer.
