how to create maxsdk pointer?

 
 
 
Posted by:SITT
Data created:5 May 2010

BitmapRenderer

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 myInfo
IBitmap myBitmap = global.TheManager.Create( myInfo );

Marsel Khadiyev (Software Developer, EPHERE Inc.)

thank you :)