Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/eu/finwe/obrazki/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,32 @@ public Point2D getPoint2D(Point2D srcPt, Point2D dstPt)



}

static private class FiltrNicNieRobiący extends Filtr
{
private final typFiltra typ;

public FiltrNicNieRobiący(typFiltra typ) {
this.typ = typ;
}

@Override
public BufferedImage filter(BufferedImage src, BufferedImage dest) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public Rectangle2D getBounds2D(BufferedImage src) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public Point2D getPoint2D(Point2D srcPt, Point2D dstPt) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}


}


Expand Down