()
| 6040 | } |
| 6041 | |
| 6042 | void makeText() { |
| 6043 | String text = getFirstString(); |
| 6044 | int x = (int)getNextArg(); |
| 6045 | int y = (int)getLastArg(); |
| 6046 | ImagePlus imp = getImage(); |
| 6047 | Font font = this.font; |
| 6048 | boolean nullFont = font==null; |
| 6049 | if (nullFont) |
| 6050 | font = imp.getProcessor().getFont(); |
| 6051 | TextRoi roi = new TextRoi(x, y, text, font); |
| 6052 | if (!nullFont) |
| 6053 | roi.setAntiAlias(antialiasedText); |
| 6054 | imp.setRoi(roi); |
| 6055 | } |
| 6056 | |
| 6057 | void makeEllipse() { |
| 6058 | ImagePlus imp = getImage(); |
no test coverage detected