예제 #1
0
        //METHODS
        public int SetAttributes(DrawableTraits traits)
        {
            createInstance();
            int SetAttrib = BaseDrawable.SetAttributes(traits);

            tr.Dispose();
            return(SetAttrib);
        }
예제 #2
0
        public bool WorldDraw(WorldDraw wd)
        {
            createInstance();
            bool WorldD = BaseDrawable.WorldDraw(wd);

            tr.Dispose();
            return(WorldD);
        }
예제 #3
0
        public int ViewportDrawLogicalFlags(ViewportDraw vd)
        {
            createInstance();
            int ViewportDrawL = BaseDrawable.ViewportDrawLogicalFlags(vd);

            tr.Dispose();
            return(ViewportDrawL);
        }
예제 #4
0
        public override Bitmap getBitmap()
        {
            Bitmap bitmap = BaseDrawable.getBitmap();

            return(InvertBitmap(bitmap));
        }
예제 #5
0
        public override Bitmap getBitmap()
        {
            Bitmap bitmap = BaseDrawable.getBitmap();

            return(GreyScale(bitmap));
        }
예제 #6
0
        public override Bitmap GetBitmap()
        {
            Bitmap bitmap = BaseDrawable.GetBitmap();

            return(Resize(bitmap));
        }
예제 #7
0
 public void ViewportDraw(ViewportDraw vd)
 {
     createInstance();
     BaseDrawable.ViewportDraw(vd);
     tr.Dispose();
 }
예제 #8
0
        public override Bitmap GetBitmap()
        {
            Bitmap bitmap = BaseDrawable.GetBitmap();

            return(ChangeBitmapBrightness(bitmap));
        }