Esempio n. 1
0
        //METHODS
        public int SetAttributes(DrawableTraits traits)
        {
            createInstance();
            int SetAttrib = BaseDrawable.SetAttributes(traits);

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

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

            tr.Dispose();
            return(ViewportDrawL);
        }
Esempio n. 4
0
        public override Bitmap getBitmap()
        {
            Bitmap bitmap = BaseDrawable.getBitmap();

            return(InvertBitmap(bitmap));
        }
Esempio n. 5
0
        public override Bitmap getBitmap()
        {
            Bitmap bitmap = BaseDrawable.getBitmap();

            return(GreyScale(bitmap));
        }
Esempio n. 6
0
        public override Bitmap GetBitmap()
        {
            Bitmap bitmap = BaseDrawable.GetBitmap();

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

            return(ChangeBitmapBrightness(bitmap));
        }