THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 25/06/2007 at 02:15, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.1.1
Platform: Windows ;
Language(s) : C++ ;
---------
Hi. Some my plugins bacome work wrong after 10.1.1 update.
Using debugger, I seen that SelectionChanger doesnt work anymore. Look this code
SelectionChanger *SelChng = SelectionChanger::Alloc() ;
BaseSelect *BSel = po->GetPointS() ;
SelChng->InitFromSelection( BSel, Mpoints, obj) ;
BaseSelect *selE = SelChng->GetEdgeS() ;
Before 10.1.1 updete it worked well. But after selE gets absolutely same indices as BSel.
i. e. SelectionChanger does not convert indices from point to edges anymore, but just copy them form points to edges :)