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
27 changes: 26 additions & 1 deletion src/eu/finwe/obrazki/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -670,11 +670,36 @@ public Point2D getPoint2D(Point2D srcPt, Point2D dstPt)
}



static private class FiltrPusty extends Filtr {

private final typFiltra typ;

public FiltrPusty (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.
}

}

}



/* Testowanie wybranych metod;
* klas zawierających metodę main() może być w projekcie dużo.
* Trzeba tylko pamiętać o określeniu tej "startowej"
Expand Down