Re: custom operators and changing topology

2013-05-23 Thread ran sariel
efer to sdk manual about CComAPIHandler class. > > > Thanks, > Joany > > > > Original message -------- > From: ran sariel > Date: > To: softimage > Subject: Re: custom operators and changing topology > > > so does that mean that there&

Re: custom operators and changing topology

2013-05-23 Thread Songqiong Yang
Try to use CComAPIHandler, to call APIs provided by Object Model. More info pls refer to sdk manual about CComAPIHandler class. Thanks, Joany Original message From: ran sariel Date: To: softimage Subject: Re: custom operators and changing topology so does that mean that

Re: custom operators and changing topology

2013-05-23 Thread ran sariel
> > Thanks, > Joany > From: Matt Lind [mailto:ml...@carbinestudios.com] > Sent: Thursday, May 23, 2013 8:45 AM > To: Songqiong Yang; softimage@listproc.autodesk.com > Subject: RE: custom operators and changing topology > > For the record, SDK updates like this are pret

RE: custom operators and changing topology

2013-05-22 Thread Matt Lind
: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Songqiong Yang Sent: Wednesday, May 22, 2013 5:21 PM To: softimage@listproc.autodesk.com Subject: RE: custom operators and changing topology Hi Matt, We didn't update docs for service

RE: custom operators and changing topology

2013-05-22 Thread Songqiong Yang
PM To: softimage@listproc.autodesk.com Subject: RE: custom operators and changing topology Hi Ran, Which Softimage version are you using? Since 2013 SP1, there’re two new C++ APIs introduced, to allow the creation of paramdef with a specified classification. 1. Factory::CreatePar

RE: custom operators and changing topology

2013-05-22 Thread Matt Lind
image@listproc.autodesk.com Subject: RE: custom operators and changing topology Hi Ran, Which Softimage version are you using? Since 2013 SP1, there're two new C++ APIs introduced, to allow the creation of paramdef with a specified classification. 1. Factory::CreateParamDef CreatePar

Re: custom operators and changing topology

2013-05-22 Thread ran sariel
de/si_cpp/classXSI_1_1CValue.html>&in_suggestedmin, > const CValue< > http://download.autodesk.com/global/docs/softimage2014/en_us/sdkguide/si_cpp/classXSI_1_1CValue.html> > &in_suggestedmax, Parameter< > http://download.autodesk.com/glob

RE: custom operators and changing topology

2013-05-21 Thread Songqiong Yang
ownload.autodesk.com/global/docs/softimage2014/en_us/sdkguide/si_cpp/classXSI_1_1CValue.html> &in_suggestedmax, Parameter<http://download.autodesk.com/global/docs/softimage2014/en_us/sdkguide/si_cpp/classXSI_1_1Parameter.html> &io_parameter) Thanks, Joany From: softimage-boun...@listproc.autode

Re: custom operators and changing topology

2013-05-21 Thread Ahmidou Lyazidi
* Tuesday, May 21, 2013 3:21 PM > *To:* softimage > *Subject:* Re: custom operators and changing topology > > ** ** > > Thank you Matt > > ** ** > > the issue is not defining the data type, the problem I'm facing is trying > to let softimage treat m

RE: custom operators and changing topology

2013-05-21 Thread Matt Lind
Tuesday, May 21, 2013 3:21 PM To: softimage Subject: Re: custom operators and changing topology Thank you Matt the issue is not defining the data type, the problem I'm facing is trying to let softimage treat my customOperator as one that is changing topology. one of the advice I found online wa

Re: custom operators and changing topology

2013-05-21 Thread ran sariel
Thank you Matt the issue is not defining the data type, the problem I'm facing is trying to let softimage treat my customOperator as one that is changing topology. one of the advice I found online was defining the first parameters on that operator as "siClassIfTopo", that method is valid for the o

RE: custom operators and changing topology

2013-05-21 Thread Matt Lind
XSIFactory.CreateParamDef() is for creating parameters the user interacts with in the operator's PPG. Defining the data type your operator reads/writes is done via port connections. CustomOperator.AddInputPort() and CustomOperator.AddOutputPort(), for example. Matt From: softimage-boun...