ingvard

ingvard

About Me

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Skills

Availability

Not Specified

Recent Forum Posts

fresnel vs refract 2014年6月3日6:41

Hello everyone!

I am trying to render refraction. I can't understand why the refract vector produced by fresnel function differs from the refract vector produced by refract function?

Thanks

Physicalsss: integrateMultipoleRd 2013年8月2日3:44

Hello.

I'm wondering to know what is the model used for the diffuse profile calculation in physicalsss_multi.vfl in function integrateMultipoleRd. I've read a few papers and haven't found such formula for calculating Rd. It would be nice to know what papers have you used for writing multiscattering?

Thank you.

send an array parameter from C code into CVEX 2012年10月12日17:44

Hi guys!

I'm trying to pass float array to CVEX function for using ramp parameters in CVEX.

fpreal32 myval={ 0.5, 0.3, 0.8};
cvex.addInput(“floatramp_the_key_positions” , CVEX_TYPE_FLOAT, false);

//….
cvex.load(argc, argv);
//…

if(MyVal=cvex.findInput(“floatramp_the_key_positions”,CVEX_TYPE_FLOAT))
MyVal->setData(myval, 1);
//…
cvex.run(1, true);
//…

But I can't catch it in my CVEX
Is it possible to send an array from C code to CVEX? And if it is, could you guide me how to realize it?

Thanks!