Always returns null for rectangular Roi's
()
| 1763 | |
| 1764 | /** Always returns null for rectangular Roi's */ |
| 1765 | public ImageProcessor getMask() { |
| 1766 | if (cornerDiameter>0) |
| 1767 | return (new ShapeRoi(new RoundRectangle2D.Float(x, y, width, height, cornerDiameter, cornerDiameter))).getMask(); |
| 1768 | else |
| 1769 | return null; |
| 1770 | } |
| 1771 | |
| 1772 | public void startPaste(ImagePlus clipboard) { |
| 1773 | IJ.showStatus("Pasting..."); |
no outgoing calls
no test coverage detected