001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005package armyc2.c5isr.graphics2d;
006//import android.graphics.RectF;
007/**
008 *
009*
010 * @deprecated
011 */
012public class TexturePaint {
013    private Rectangle2D _rect=null;
014    private Graphics2D _g2d=null;
015    private BufferedImage _bi=null;
016    public TexturePaint(BufferedImage bi, Rectangle2D rect)
017    {
018        _rect=rect;
019        _bi=bi;
020    }
021}