Bitmap * Renderer *
so many pointer
what in c#?
IBitmap pBmp = null;
can not work
how to create bitmap like maxsdk???
You'd need to use IBitmapManager to create your bitmap, something like:
IBitmapInfo myInfo = global.BitmapInfo.Create();// Initialize myInfoIBitmap myBitmap = global.TheManager.Create( myInfo );
Marsel Khadiyev (Software Developer, EPHERE Inc.)
thank you :)