RE: CrowdFX Define Move questions

2013-07-17 Thread Chris Chia
Pardon me on the screenshot with the wrong value. Correction: The weights value (0.7267, 0, 0.2733) in the screenshot indicates that it is playing 72.67% of Walking and 27.33% of the Running animation at that frame. -Original Message- From: softimage-boun...@listproc.autodesk.com [mail

Re: ICE - Get closest location on group

2013-07-17 Thread Raffaele Fragapane
It's perfectly possible to rename some properties, parameters or clusters and seeing a graph that behaved before still behave with the old names displayed but looking up the old hooks. Until you reload, that is, that's when things will go (as they should) down the crapper. Copying -> deleting -> p

Re: ICE - Get closest location on group

2013-07-17 Thread Ahmidou Lyazidi
Then restart softimage, or try to rebuild from scratch? I just tryed, and I have the correct behavior here (2012) and pulling the vertex color from the neigbhors not the sphere. If I change a neighbor cluster name the tree become invalid. another thing is that sometimes (it's pretty rare) you have

RE: ICE - Get closest location on group

2013-07-17 Thread Matt Lind
all objects started with the same cluster and cluster property names: sphere.cls.NC_VertexData.PrimaryColor grid.cls.NC_VertexData.PrimaryColor torus.cls.NC_VertexData.PrimaryColor cube.cls.NC_VertexData.PrimaryColor I renamed the neighbors so all are unique: sphere.cls.NC_VertexD

Re: ICE - Get closest location on group

2013-07-17 Thread Ahmidou Lyazidi
so you are saying that: sphere prop named "A" neighbors props named "B" and in your icetree: Closest location --> "A" is still working? that might be a refresh issue, can you try to cut/paste the whole tree? --- Ahmidou Lyazidi Director | TD | CG arti

RE: ICE - Get closest location on group

2013-07-17 Thread Matt Lind
I renamed all the neighbors' clusters and the ICE Tree still worked. That's why I was confused. Matt From: softimage-boun...@listproc.autodesk.com [softimage-boun...@listproc.autodesk.com] On Behalf Of Ahmidou Lyazidi [ahmidou@gmail.com] Sent: Wednesday

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Julian Johnson
On 17/07/2013 17:03, Grahame Fuller wrote: 3. Use Build Array from Set to put ParentID into an array. Find the parent's ParentID in the array. You should get an array with two indices, the one that isn't the parent is the cloned child (safe to say it will be the second one). That step is ge

Re: set data

2013-07-17 Thread Raffaele Fragapane
I'm not 100% sure I understand what you're trying to do, but if it's of any use evaluating and fetching data are completely different things. You can almost always rely on data for checks (I say almost becuase it's even TOO reliable as it lets you use things before you set them, which is a nice tri

Re: Janimation | Alien Rage Cinematic

2013-07-17 Thread Andy Moorer
Nice! The time lapse segues were striking in particular, cool stuff! Sent from my iPad On Jul 17, 2013, at 9:26 AM, Greg Punchatz wrote: > This was released last week and I thought I should share. The compression is > kinda nasty but here you go.. > > http://www.youtube.com/watch?v=fFx8ONhq

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Bk
Thanks for all the replies. It's much appreciated. I'll grind through them tomorrow at work. On 17 Jul 2013, at 19:26, Vladimir Jankijevic wrote: > something we recorded last year while I was in NY: https://vimeo.com/44951318 > maybe this helps :) > > Cheers > Vladimir > > > On Wed, Jul

Re: Janimation | Alien Rage Cinematic

2013-07-17 Thread Eric Thivierge
Great stuff guys! Eric Thivierge === Character TD / RnD Hybride Technologies On July-17-13 1:08:05 PM, Mitchell Lotierzo wrote: Yup. MR was used for the volumes and emRPC was used for some of the several passes that make up the spiraling galaxy. On Wed, Jul 17, 2013 at 11:57 AM,

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Vladimir Jankijevic
something we recorded last year while I was in NY: https://vimeo.com/44951318 maybe this helps :) Cheers Vladimir On Wed, Jul 17, 2013 at 2:05 PM, Vincent Ullmann < vincent.ullm...@googlemail.com> wrote: > Quote Paul: > > { > Ive managed to get barycentric interpolation working for a f

RE: Maths problem (barycentric coordinates)

2013-07-17 Thread Grahame Fuller
Translated from the Greek: 1. Calculate the distance from the test position to each of your selected points. 2. If one of the distances is 0, stop. The corresponding coordinate is 1, the others are 0. 3. Otherwise for each of the distances, calculate 1/distance, or 1/distance^2, or 1/distance

RE: set data

2013-07-17 Thread Ponthieux, Joseph G. (LARC-E1A)[LITES]
Grahame, Thanks. I'll try these approaches. I think the thing that confuses me is that I've used If conditionals to mute compounds before, and they've worked. But in this case it won't. -- Joey Ponthieux LaRC Information Technology Enhanced Services (LITES) Mymic Technical Services NASA Langley

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Alok Gandhi
You can have a look at my blog post: http://alokgandhi.com/blog/2012/05/28/barycentric-coordinates-and-the-magic-of-locations/ On Wed, Jul 17, 2013 at 12:58 PM, Ben Houston wrote: > BTW here is our code for calculating barycoordinates from points and > creating points from barycoordinates: > >

RE: set data

2013-07-17 Thread Grahame Fuller
You can create a compound that just calculates the value, and then let users plug that into a Set Data themselves or alternatively create a second compound that embeds the first one plus a Set Data. I've used that approach several times. Of course, it won't work if the calculation requires an it

Re: [SDK] Force ICE-Tree refresh

2013-07-17 Thread Ciaran Moloney
Did you try Desktop.RedrawUI() ? Will probably want to have a OGL window open somewhere... Ciaran On Mon, Jul 15, 2013 at 11:54 PM, Vincent Ullmann < vincent.ullm...@googlemail.com> wrote: > @Sandy: > Hmm... i kind a dont like the Mixer... ;-) > But i will give him a try tomorrow, for the ca

Re: Janimation | Alien Rage Cinematic

2013-07-17 Thread Mitchell Lotierzo
Yup. MR was used for the volumes and emRPC was used for some of the several passes that make up the spiraling galaxy. On Wed, Jul 17, 2013 at 11:57 AM, Alan Fregtman wrote: > Great work, guys! > > Rendered in Arnold? > > > > On Wed, Jul 17, 2013 at 12:26 PM, Greg Punchatz wrote: > >> This was r

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Ben Houston
BTW here is our code for calculating barycoordinates from points and creating points from barycoordinates: template class Triangle3 { public: Vec3 a; Vec3 b; Vec3 c; Matrix44 getPointToBarycoordMatrix() const; Matrix44 getBarycoordToPointMatrix() const; };

Re: Janimation | Alien Rage Cinematic

2013-07-17 Thread Alan Fregtman
Great work, guys! Rendered in Arnold? On Wed, Jul 17, 2013 at 12:26 PM, Greg Punchatz wrote: > This was released last week and I thought I should share. The compression > is kinda nasty but here you go.. > > http://www.youtube.com/watch?v=fFx8ONhq95o > > The opening shot was two main passes

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Paul
I have been googling all I can find trying to understand the maths notation but its not my forte and I've not found anything that does exactly what I want. I was hoping someone cleverer than i might take pity on me and provide an idiot proof explanation. On 17 Jul 2013, at 17:07, David Barosi

RE: set data

2013-07-17 Thread Ponthieux, Joseph G. (LARC-E1A)[LITES]
I have a compound that I would like to be used to either apply a computed value to a parameter, or alternatively a value to other compounds. I was trying to make the compound do double duty as something useful as a standalone node vs a node useful to a larger tree. -- Joey Ponthieux LaRC Inform

Re: blend of speed using test inside null

2013-07-17 Thread Jonny Grew
Safe. Cheers Cristo. Was looking at linear interpolate but didn't even think about states. Will give it a go. Fancy a lemonade tomorrow lunch? Coach & horses, gt Marlborough. Jonny Grew Ltd www.Jonnygrew.com 07855 212722 Jonny Grew Limited is registered in England and Wales. Company number:07735

Re: blend of speed using test inside null

2013-07-17 Thread Cristobal Infante
Hi Jonny, What you probably want to do is use states, so trigger state 1 if particle is inside the null. Then, on state 1 you could use a Linear interpolate using the particle age or age percentage. Safe? C On 17 July 2013 17:13, Jonny Grew wrote: > Hello! > > I'm trying to control a blend

Janimation | Alien Rage Cinematic

2013-07-17 Thread Greg Punchatz
This was released last week and I thought I should share. The compression is kinda nasty but here you go.. http://www.youtube.com/watch?v=fFx8ONhq95o The opening shot was two main passes the asteroid and everything on it and the galaxy plus FX passes. There is a crazy amount of geo and lights

blend of speed using test inside null

2013-07-17 Thread Jonny Grew
Hello! I'm trying to control a blend of speed when using flow along curve. I'm using the 'set new speed' and then testing inside null to alter the speed of the particles - but is there a way of having the speed animate between the two speeds rather than being a black and white 'if' but rather ble

RE: set data

2013-07-17 Thread Grahame Fuller
No, the references must get resolved before the tree is even evaluated. Can you say anything more about the overall problem you are trying to solve? There may be another way. gray From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthi

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread David Barosin
If you can chew through the greek notation this is helpful. http://en.wikipedia.org/wiki/Inverse_distance_weighting On Wed, Jul 17, 2013 at 11:38 AM, wrote: > Hi, I have spent days on this and I cant work it out > > I have a selection of points (not on a flat plane) and I have a test > pos

set data

2013-07-17 Thread Ponthieux, Joseph G. (LARC-E1A)[LITES]
Is there any way to make a set data node ignore a parameter that does not exist because the object it belongs to might not exist? I've tried using first valid but it can't accept execute. I then tried an if conditional to terminate the execute channel as an option but it does not appear to be

Re: Maths problem (barycentric coordinates)

2013-07-17 Thread Ben Houston
So barycoords for a triangle works well and I believe there are tons of references on the web for this. Barycoordinates for polygons is a bit more problematic because they are no longer linear but rather polynomials and thus harder to calculate. I'd stick with triangles and then all those web ref

RE: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Grahame Fuller
It would be easier to do this with two separate clouds. If you clone the first cloud's points on emission, then the creation order and therefore the point indices will be the same so you can use Switch Context. You can set the cloned particles' size to 0 if you want to hide them and then "trigge

CrowdFX Define Move questions

2013-07-17 Thread Sandy Sutherland
Hi All, Am deep in crowdFX world and generally loving it - quite impressed with it. A couple of questions if I may- 1. Is it possible to put more than one action into a define move node? I am trying trot - run - faster run, when I do this, the middle action does not work correctly it seem

Maths problem (barycentric coordinates)

2013-07-17 Thread paul
Hi, I have spent days on this and I cant work it out I have a selection of points (not on a flat plane) and I have a test position. It returns an array that represents the weighting, related to the proximity to the other points. I want to have it so that when the test position is directly at a poi

Re: OT: Pacific Rim

2013-07-17 Thread Alan Fregtman
Hehe, I wish! I'll suggest it though. In the meantime, there's a handful of social profiles: https://www.facebook.com/rodeofx https://vimeo.com/rodeofx http://www.youtube.com/user/RodeoVFX/videos http://www.behance.net/RodeoFX https://plus.googl

crowdFX and orientation

2013-07-17 Thread Alex Dorman
Hi List I had a quick question about setting orientation in crowdFX in softimage 2013 I have a simple stadium crowd which I can set a custom emit orientation on thorough the initialize stadium compound, but I want all the characters to face looking into the center of the stadium ideally using a n

Re: OT: Pacific Rim

2013-07-17 Thread Eric Thivierge
Not everyone is cool enough to have their own blog Ben. :P Eric Thivierge === Character TD / RnD Hybride Technologies On July-17-13 10:25:41 AM, Ben Houston wrote: So why doesn't RodeoFX have a blog where you can post this in more detail. :-) -ben On Wed, Jul 17, 2013 at 12:12 AM

Re: OT: Pacific Rim

2013-07-17 Thread Ben Houston
So why doesn't RodeoFX have a blog where you can post this in more detail. :-) -ben On Wed, Jul 17, 2013 at 12:12 AM, Alan Fregtman wrote: > Uh-oh! lol > > artofvfx.com has posted an article on our work for *Now You See Me*. You > can see some nice before & after pics: > http://www.artofvfx.com/?

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Alan Fregtman
@ Julian & Leonard, Thank you guys. I will check your scenes and explanations when I get home later. @Ciaran, It does, but only so for the particles with strands. Particles without strands get filtered out of the logic. So even though I can work out the orientation I need from the location StrandP

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Ciaran Moloney
I guess I don't understand the problemwhy not do just ID to Location >> strand positions ? It's quick and gives you the array you need right away. On Wed, Jul 17, 2013 at 1:29 PM, Leonard Koch wrote: > Hm somehow my first email didn't get through. > The trick is to turn the per point data in

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Christian Keller
If you clone the points clone the id into a new attribute, then you know which particle is the parent. And add a attribute that it's a clone. You can use that later to decide not to put orientation values on. Build a set from you tangent, whatever values and then you can select the corresponding

RE: OT: Pacific Rim

2013-07-17 Thread Marc-Andre Carbonneau
And Vincent is too modest but he and his partner also crunched some fluid shots like crazy for ILM Vancouver... Vacation for the next two weeks for me and I almost hope it rain so I don't feel guilty to go see all of this summer's line up! ;) From: softimage-boun...@listproc.autodesk.com [mail

Re: Short introduction and a big hello.

2013-07-17 Thread Ognjen Vukovic
Hi Ben, Yes i remember Ivan was non stop on the mailing list. I thing we started using Crate nearly two years ago and it was a game changer from day one. On Wed, Jul 17, 2013 at 12:28 AM, Ben Houston wrote: > Hello! Crater Studio and Ivan rock. Ivan was really helpful in polishing > the Exoc

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Ciaran Moloney
Maybe you're not getting the right ID to look up the strandpoints on? On Wed, Jul 17, 2013 at 2:34 AM, Alan Fregtman wrote: > I thought that too, but it's not cutting it. :( > > The "do stuff" part doesn't get any StrandPosition data for the points > without strands. (Tried both ID to Location &

Re: Setting data on a particle based off data from another particle in the same cloud

2013-07-17 Thread Julian Johnson
Hi Alan, https://dl.dropboxusercontent.com/u/69741069/cross_querying.rar Not sure if this is what you're after but it establishes a relationship between the parent and the clone which enables the parent to later query the clone's attributes and set data on itself. It's quite hacky in that the