Re: ICE cacheing

2012-10-25 Thread Christian Keller
I'd always use a separate new cloud for reading , this way everything stays clean. I often have even one scene for simulating/caching, and another one for reading/rendering both open at the same time .. -- christian keller visual effects|direction m +49 179 69 36 248 f +49 40 386 835 33

Irraniance Particles random black frames?

2012-10-25 Thread Claudio Pavan
Hi everyone I am rendering a scene using irradiance particles but when I send it to the render farm I get random black frames from random machines. Any ideas? Thanks

RE: Irraniance Particles random black frames?

2012-10-25 Thread Sandy Sutherland
Look at logs from the farm - best place to start. Need to know which machines rendered the black frames. S. Sandy Sutherlandmailto:sandy.sutherl...@triggerfish.co.za | Technical Supervisor [http://triggerfish.co.za/en/wp-content/uploads/udf_foundry/images/logo.png]

RE: Irraniance Particles random black frames?

2012-10-25 Thread Sandy Sutherland
Mmm not sure Clouds - one thing I have noticed is that MR gets pretty funky when you hit close to RAM limits. How are you in this regard? S. Sandy Sutherlandmailto:sandy.sutherl...@triggerfish.co.za | Technical Supervisor

RE: Irraniance Particles random black frames?

2012-10-25 Thread Claudio Pavan
Yeah I think you right it looks like it could be a ram issue. typical MR J From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Sandy Sutherland Sent: Thursday, October 25, 2012 12:02 PM To: softimage@listproc.autodesk.com Subject: RE:

Re: Delaunay subdivision compound?

2012-10-25 Thread Dan Yargici
Thanks guys. I have gone another way. I'm dicing my geo and then filtering the points to closest points in a pointcloud generated from a sample set. I can then adjust the size of the polys by the density of the point distribution in the pointcloud. It adds a few layers to the workflow, but it

Re: ICE cacheing

2012-10-25 Thread Nick Angus
Agreed Christian, it does keep it cleaner and gives you a fallback if it all goes wrong! Cheers, Nick Nick Angus | 3d Supervisor Alt Vfx www.altvfx.comhttp://www.altvfx.com On 25/10/2012, at 5:33 PM, Christian Keller chris3...@me.commailto:chris3...@me.com wrote: I'd always use a separate

Slice polygon

2012-10-25 Thread Szabolcs Matefy
Hey folks, Is it possible to active the INTERACTIVE knifing tool from script with given values? Cheers Szabolcs ___ This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate,

Re: ICE cacheing

2012-10-25 Thread Arvid Björn
I also use a second cloud, and I use the [Scene] tag in the path to the icecache on the target cloud, speeds up my workflow a lot! Once you save a cache and load it to an empty cloud, replace the name of the scene in the path with the tag, and you can have it update with new scene versions,

RE: Slice polygon

2012-10-25 Thread Grahame Fuller
You can activate the tool like this (JScript): Commands(Slice Polygons Tool).Execute(); Not 100% sure what you mean by with given values but you can apply a Slice Polygons Op first. If it's the last topo change and the viewing plane is perpendicular to the cut, then activating the tool gives

SDK: When *exactly* does XSIUnloadPlugin get called

2012-10-25 Thread Matt Lind
I have a developer question from a developer in our building. We've checked the SDK manuals, but they were ambiguous on the subject. Our developer is attempting to write a bridge between Softimage and our other proprietary tools/systems for custom tool development and must allocate many

Re: SDK: When *exactly* does XSIUnloadPlugin get called

2012-10-25 Thread Kamen Lilov
For example, if XSILoadPlugin() terminates prematurely by returning XSI::CStatus::Fail, does XSIUnloadPlugin() get called? Or does XSIUnloadPlugin() only get called if XSILoadPlugin() returns XSI::CStatus::OK indicating the plugin has successfully completed loading? If XSIUnloadPlugin() gets

Camera Capture: Alternate scale possible?

2012-10-25 Thread Bradley Gabe
Is it possible to run a camera capture using a size value outside of the standard 1, 1/2, 1/4, 1/8 set we are provided in the comboBox menu? If so, I would need to do this via scripting. -B

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Alok
Look for Viewport Capture parameters in the docs. I would do it like this: Application.Dictionary.GetObject("ViewportCapture.ImageScale").Value = myScale On 25/10/2012 3:15 PM, Bradley Gabe wrote: Is it possible to

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Alok
Ah I see, then maybe the image size manipulation might help. On 25/10/2012 4:14 PM, Bradley Gabe wrote: I don't think this works. The ImageScale Parameter is a combo box, where the index value corresponds to the denominator of the fraction. 2 = 1/2 4 = 1/4 and so on... If I set it to any

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Luc-Eric Rousseau
It's probably only the ui that resets it to 1, if you capture from scripting, does it use it? On Oct 25, 2012 4:15 PM, Bradley Gabe witha...@gmail.com wrote: I don't think this works. The ImageScale Parameter is a combo box, where the index value corresponds to the denominator of the fraction.

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Raffaele Fragapane
The combo box is usually just a UI wrapper helping to pick a value by its label. The value underneath with the UI closed should still be changeable if valid. Don't know about this specific one, but other combo boxes in the past got in my way, but could be worked around if nothing was open

RE: SDK: When *exactly* does XSIUnloadPlugin get called

2012-10-25 Thread Marc-Andre Belzile
I think this is already covered somewhere in the doc. XSIUnloadPlugin gets called when the plugin is unloaded by the plugin manager (explicitly or when XSI exits). It is also called through the Application.UnloadPlugin API or if XSILoadPlugin fails. XSILoadPlugin is used for registering

RE: ICE cacheing

2012-10-25 Thread Nick Angus
Good call Arvid, I love this list! N From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Arvid Björn Sent: Friday, 26 October 2012 1:40 AM To: softimage@listproc.autodesk.com Subject: Re: ICE cacheing I also use a second cloud, and I use

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Stephen Blair
Yup, I tried, and the new value seems to stick, as long as you don't open the Capture dialog Application.Dictionary.GetObject("ViewportCapture.ImageScale").Value = 16 Application.CaptureViewport(2, False) print

Re: Camera Capture: Alternate scale possible?

2012-10-25 Thread Bradley Gabe
Having the ViewportCapture PPG open to check on my settings was the problem. Thanks everyone! On Thu, Oct 25, 2012 at 9:18 PM, Stephen Blair stephenrbl...@gmail.comwrote: Yup, I tried, and the new value seems to stick, as long as you don't open the Capture dialog

Re: SDK: When *exactly* does XSIUnloadPlugin get called

2012-10-25 Thread Kamen Lilov
Marc-Andre, with all due respect, I think you are mistaken. Here's what the docs say: A self-installing plug-in can also implement anXSIUnloadPlugin http://softimage.wiki.softimage.com/sdkdocs/cb_XSIUnloadPlugin.htm#Rzmcb_XSIUnloadPluginfunction. Softimage callsXSIUnloadPlugin