event question

2013-09-05 Thread Halim Negadi
Hello List,

I'm trying to write a simple event that would write metada in a text file
upon scene save and model export.
I RTFM the thing and couldn't find a way to catch the result full path of
the exported model || saved scene after saving || export occurs.
Any Idea ?

Thank you,

-H.


Re: event question

2013-09-05 Thread Stephen Blair

Seems possible to me:

# VERBOSE : EndSceneSave2_OnEvent called
# VERBOSE : FileName: 
C:\Users\SOLIDANGLE\Documents\Projects\Support\Scenes\Classroom_aRNOLD.scn

Application.SaveScene()
Application.SelectObj(Building, , )
# VERBOSE : EndFileExport_OnEvent called
# VERBOSE : Input: Building
# VERBOSE : FileName: 
C:\Users\SOLIDANGLE\Documents\Projects\Support\Models\Building.emdl

# VERBOSE : FileType: 2
Application.ExportModel(Building, 
C:\\Users\\SOLIDANGLE\\Documents\\Projects\\Support\\Models\\Building.emdl, 
, )




On 05/09/2013 6:26 AM, Halim Negadi wrote:

Hello List,

I'm trying to write a simple event that would write metada in a text 
file upon scene save and model export.
I RTFM the thing and couldn't find a way to catch the result full path 
of the exported model || saved scene after saving || export occurs.

Any Idea ?

Thank you,

-H.




Re: softimage.tv - Hello World!

2013-09-05 Thread Luca!!!!
Hi! I registered yesterday, but didn't receive any mail confermation...mh
mh !...


2013/9/5 Kris Rivel krisri...@gmail.com

 Great idea...love it!


 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus n...@altvfx.com wrote:

  Great idea Cris,

  Stand by for content!

  N
  --
 *From:* softimage-boun...@listproc.autodesk.com [
 softimage-boun...@listproc.autodesk.com] on behalf of Cristobal Infante [
 cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18

 *To:* softimage@listproc.autodesk.com
 *Subject:* softimage.tv - Hello World!

   Hi All,

  Would like to announce the launch of softimage.tv created to showcase
 the best softimage work out there. It's meant to be mainly a video
 depository but hoping it will also function as a hub for the community.

  The idea sparked from Andy Moorer's Nike Evolution write up on that
 Nike job, I thought amazing effort but how do we showcase it a bit more?
 The list and si-community are great place to discuss soft, but I think a
 lot users are not on it, not to mention producers, agencies and decision
 makers.

  It is still early days so this is a work in progress, we will be
 adjusting the layout based on the predominant content we receive. This is
 where eveyone can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a  showreel to show off,
 finished a good looking job help us by submitting it.

  You can directly submit your videos via very simple form in the website
 (Submit video). All you need to send is a title, vimeo/youtube url, and
 description. The wordpress will look after the thumbnails, then all we have
 to do is approve it. Ideally you will be logged in when submitting, so the
 system will put all videos under your profile.

  The website was created by myself with the help of Cesar Saez . Would
 love to know what you guys think about it, and how we can move things
 foward.

  Best,
 Cris






-- 
...superpositiviii...qualunque cosa accada!...


Re: softimage.tv - Hello World!

2013-09-05 Thread Ognjen Vukovic
Check spam, somehow mine got lost there to.


On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com wrote:

 Hi! I registered yesterday, but didn't receive any mail confermation...mh
 mh !...


 2013/9/5 Kris Rivel krisri...@gmail.com

 Great idea...love it!


 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus n...@altvfx.com wrote:

  Great idea Cris,

  Stand by for content!

  N
  --
 *From:* softimage-boun...@listproc.autodesk.com [
 softimage-boun...@listproc.autodesk.com] on behalf of Cristobal Infante
 [cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18

 *To:* softimage@listproc.autodesk.com
 *Subject:* softimage.tv - Hello World!

   Hi All,

  Would like to announce the launch of softimage.tv created to showcase
 the best softimage work out there. It's meant to be mainly a video
 depository but hoping it will also function as a hub for the community.

  The idea sparked from Andy Moorer's Nike Evolution write up on that
 Nike job, I thought amazing effort but how do we showcase it a bit more?
 The list and si-community are great place to discuss soft, but I think a
 lot users are not on it, not to mention producers, agencies and decision
 makers.

  It is still early days so this is a work in progress, we will be
 adjusting the layout based on the predominant content we receive. This is
 where eveyone can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a  showreel to show off,
 finished a good looking job help us by submitting it.

  You can directly submit your videos via very simple form in the
 website (Submit video). All you need to send is a title, vimeo/youtube url,
 and description. The wordpress will look after the thumbnails, then all we
 have to do is approve it. Ideally you will be logged in when submitting, so
 the system will put all videos under your profile.

  The website was created by myself with the help of Cesar Saez . Would
 love to know what you guys think about it, and how we can move things
 foward.

  Best,
 Cris






 --
 ...superpositiviii...qualunque cosa accada!...



Re: event question

2013-09-05 Thread Halim Negadi
Thank you Stephen, saved me a couple of hours diggin the wrong way.


On Thu, Sep 5, 2013 at 12:55 PM, Stephen Blair stephenrbl...@gmail.comwrote:

 Seems possible to me:

 # VERBOSE : EndSceneSave2_OnEvent called
 # VERBOSE : FileName: C:\Users\SOLIDANGLE\Documents\**
 Projects\Support\Scenes\**Classroom_aRNOLD.scn
 Application.SaveScene()
 Application.SelectObj(**Building, , )
 # VERBOSE : EndFileExport_OnEvent called
 # VERBOSE : Input: Building
 # VERBOSE : FileName: C:\Users\SOLIDANGLE\Documents\**
 Projects\Support\Models\**Building.emdl
 # VERBOSE : FileType: 2
 Application.ExportModel(**Building, C:\\Users\\SOLIDANGLE\\**
 Documents\\Projects\\Support\\**Models\\Building.emdl, , )




 On 05/09/2013 6:26 AM, Halim Negadi wrote:

 Hello List,

 I'm trying to write a simple event that would write metada in a text file
 upon scene save and model export.
 I RTFM the thing and couldn't find a way to catch the result full path of
 the exported model || saved scene after saving || export occurs.
 Any Idea ?

 Thank you,

 -H.





Re: softimage.tv - Hello World!

2013-09-05 Thread Eric Thivierge

Yeah mine was in spam as well.

On September-05-13 10:13:43 AM, Alan Fregtman wrote:

Mine too.



On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com
mailto:ognj...@gmail.com wrote:

Check spam, somehow mine got lost there to.


On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com
mailto:superposit...@gmail.com wrote:

Hi! I registered yesterday, but didn't receive any mail
confermation...mh mh !...


2013/9/5 Kris Rivel krisri...@gmail.com
mailto:krisri...@gmail.com

Great idea...love it!


On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
n...@altvfx.com mailto:n...@altvfx.com wrote:

Great idea Cris,

Stand by for content!

N


*From:* softimage-boun...@listproc.autodesk.com
mailto:softimage-boun...@listproc.autodesk.com
[softimage-boun...@listproc.autodesk.com
mailto:softimage-boun...@listproc.autodesk.com] on
behalf of Cristobal Infante [cgc...@gmail.com
mailto:cgc...@gmail.com]
*Sent:* 04 September 2013 22:18

*To:* softimage@listproc.autodesk.com
mailto:softimage@listproc.autodesk.com
*Subject:* softimage.tv http://softimage.tv - Hello
World!

Hi All,

Would like to announce the launch of softimage.tv
http://softimage.tv created to showcase the best
softimage work out there. It's meant to be mainly a
video depository but hoping it will also function as a
hub for the community.

The idea sparked from Andy Moorer's Nike Evolution
write up on that Nike job, I thought amazing effort
but how do we showcase it a bit more? The list and
si-community are great place to discuss soft, but I
think a lot users are not on it, not to mention
producers, agencies and decision makers.

It is still early days so this is a work in progress,
we will be adjusting the layout based on the
predominant content we receive. This is where eveyone
can help us a bit, If you ever created a tutorial for
soft, uploaded a test, done an amazing tool,  have a
 showreel to show off, finished a good looking job
help us by submitting it.

You can directly submit your videos via very simple
form in the website (Submit video). All you need to
send is a title, vimeo/youtube url, and description.
The wordpress will look after the thumbnails, then all
we have to do is approve it. Ideally you will be
logged in when submitting, so the system will put all
videos under your profile.

The website was created by myself with the help of
Cesar Saez . Would love to know what you guys think
about it, and how we can move things foward.

Best,
Cris






--
...superpositiviii...qualunque cosa accada!...







Re: softimage.tv - Hello World!

2013-09-05 Thread Alan Fregtman
Mine too.



On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com wrote:

 Check spam, somehow mine got lost there to.


 On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com wrote:

 Hi! I registered yesterday, but didn't receive any mail confermation...mh
 mh !...


 2013/9/5 Kris Rivel krisri...@gmail.com

 Great idea...love it!


 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus n...@altvfx.com wrote:

  Great idea Cris,

  Stand by for content!

  N
  --
 *From:* softimage-boun...@listproc.autodesk.com [
 softimage-boun...@listproc.autodesk.com] on behalf of Cristobal
 Infante [cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18

 *To:* softimage@listproc.autodesk.com
 *Subject:* softimage.tv - Hello World!

   Hi All,

  Would like to announce the launch of softimage.tv created to showcase
 the best softimage work out there. It's meant to be mainly a video
 depository but hoping it will also function as a hub for the community.

  The idea sparked from Andy Moorer's Nike Evolution write up on that
 Nike job, I thought amazing effort but how do we showcase it a bit more?
 The list and si-community are great place to discuss soft, but I think a
 lot users are not on it, not to mention producers, agencies and decision
 makers.

  It is still early days so this is a work in progress, we will be
 adjusting the layout based on the predominant content we receive. This is
 where eveyone can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a  showreel to show off,
 finished a good looking job help us by submitting it.

  You can directly submit your videos via very simple form in the
 website (Submit video). All you need to send is a title, vimeo/youtube url,
 and description. The wordpress will look after the thumbnails, then all we
 have to do is approve it. Ideally you will be logged in when submitting, so
 the system will put all videos under your profile.

  The website was created by myself with the help of Cesar Saez . Would
 love to know what you guys think about it, and how we can move things
 foward.

  Best,
 Cris






 --
 ...superpositiviii...qualunque cosa accada!...





Re: Poly islands in ICE

2013-09-05 Thread Mário Domingos
:)

I'll be posting some stuff on this in my blog soon.

lickingtheice.tumblr.com

Mário Domingos

www.mariodomingos.com


Sent from my super iPhone


On 05/09/2013, at 17:13, Christian Gotzinger cgo...@googlemail.com wrote:

Exactly right.


On Wed, Sep 4, 2013 at 11:30 PM, Mario Domingos mdomingos.p...@gmail.comwrote:

 This is great Christian, thank you for your patience. I knew that I had to
 change the context and tried several things but with no luck.

 Ok, so you get all the vertices ids on the the polys of the object (arrays
 of ids per poly) then get the weightmap scalar values (per point) witch you
 pack into an Array per object. Then you find  witch scalar values (from
 the weight map) belong to each vertices with the Find in Array node, here
 the context is Array per polygon and what we need is scalar or integer per
 poly so you used Get Array Average for that Am i right? Just want to be
 sure that I understand this.
  —
 Sent from Mailbox https://www.dropbox.com/mailbox for iPhone


 On Wed, Sep 4, 2013 at 5:00 PM, Christian Gotzinger cgo...@googlemail.com
  wrote:

 It's all about getting the right context. Weight maps are scalar values
 per point. The compound requires a boolean per polygon. I've attached an
 example of how you can do it (and added every node's ouput context as text
 into the image). I recommend visualizing every single pipe one after
 another so you can see what happens.
 contexts.jpg





Re: Poly islands in ICE

2013-09-05 Thread Christian Gotzinger
Exactly right.


On Wed, Sep 4, 2013 at 11:30 PM, Mario Domingos mdomingos.p...@gmail.comwrote:

 This is great Christian, thank you for your patience. I knew that I had to
 change the context and tried several things but with no luck.

 Ok, so you get all the vertices ids on the the polys of the object (arrays
 of ids per poly) then get the weightmap scalar values (per point) witch you
 pack into an Array per object. Then you find  witch scalar values (from
 the weight map) belong to each vertices with the Find in Array node, here
 the context is Array per polygon and what we need is scalar or integer per
 poly so you used Get Array Average for that Am i right? Just want to be
 sure that I understand this.
 —
 Sent from Mailbox https://www.dropbox.com/mailbox for iPhone


 On Wed, Sep 4, 2013 at 5:00 PM, Christian Gotzinger cgo...@googlemail.com
  wrote:

 It's all about getting the right context. Weight maps are scalar values
 per point. The compound requires a boolean per polygon. I've attached an
 example of how you can do it (and added every node's ouput context as text
 into the image). I recommend visualizing every single pipe one after
 another so you can see what happens.
 contexts.jpg





Re: softimage.tv - Hello World!

2013-09-05 Thread Cristobal Infante
About 100 user submitted videos between yesterday and today! Phew

but... is that ALL YOU GOT!!!




On 5 September 2013 15:15, Eric Thivierge ethivie...@hybride.com wrote:

 Yeah mine was in spam as well.


 On September-05-13 10:13:43 AM, Alan Fregtman wrote:

 Mine too.



 On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com
 mailto:ognj...@gmail.com wrote:

 Check spam, somehow mine got lost there to.


 On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com
 mailto:superpositivo@gmail.**com superposit...@gmail.com wrote:

 Hi! I registered yesterday, but didn't receive any mail
 confermation...mh mh !...


 2013/9/5 Kris Rivel krisri...@gmail.com
 mailto:krisri...@gmail.com


 Great idea...love it!


 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
 n...@altvfx.com mailto:n...@altvfx.com wrote:

 Great idea Cris,

 Stand by for content!

 N
 --**
 --**
 *From:* 
 softimage-bounces@listproc.**autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 mailto:softimage-bounces@**listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 
 [softimage-bounces@listproc.**autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 mailto:softimage-bounces@**listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com]
 on

 behalf of Cristobal Infante [cgc...@gmail.com
 mailto:cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18

 *To:* 
 softimage@listproc.autodesk.**comsoftimage@listproc.autodesk.com
 
 mailto:softimage@listproc.**autodesk.comsoftimage@listproc.autodesk.com
 
 *Subject:* softimage.tv http://softimage.tv - Hello

 World!

 Hi All,

 Would like to announce the launch of softimage.tv
 http://softimage.tv created to showcase the best

 softimage work out there. It's meant to be mainly a
 video depository but hoping it will also function as a
 hub for the community.

 The idea sparked from Andy Moorer's Nike Evolution
 write up on that Nike job, I thought amazing effort
 but how do we showcase it a bit more? The list and
 si-community are great place to discuss soft, but I
 think a lot users are not on it, not to mention
 producers, agencies and decision makers.

 It is still early days so this is a work in progress,
 we will be adjusting the layout based on the
 predominant content we receive. This is where eveyone
 can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a
  showreel to show off, finished a good looking job
 help us by submitting it.

 You can directly submit your videos via very simple
 form in the website (Submit video). All you need to
 send is a title, vimeo/youtube url, and description.
 The wordpress will look after the thumbnails, then all
 we have to do is approve it. Ideally you will be
 logged in when submitting, so the system will put all
 videos under your profile.

 The website was created by myself with the help of
 Cesar Saez . Would love to know what you guys think
 about it, and how we can move things foward.

 Best,
 Cris






 --
 ...superpositiviii...qualunque cosa accada!...







Re: softimage.tv - Hello World!

2013-09-05 Thread Cesar Saez
Thx guys for submiting so many videos and help us to build this new site,
the community response has been amazing :)

Keep it up!
Cheers


Re: softimage.tv - Hello World!

2013-09-05 Thread David Gallagher


So happy to see this!

Great job Cris and Cesar.

Dave G

On 9/5/2013 11:10 AM, Michael Clarke wrote:

Great job.
That's a huge contribution to the community.



On Sep 5, 2013, at 11:48 AM, Cristobal Infante cgc...@gmail.com 
mailto:cgc...@gmail.com wrote:



About 100 user submitted videos between yesterday and today! Phew

but... is that ALL YOU GOT!!!




On 5 September 2013 15:15, Eric Thivierge ethivie...@hybride.com 
mailto:ethivie...@hybride.com wrote:


Yeah mine was in spam as well.


On September-05-13 10:13:43 AM, Alan Fregtman wrote:

Mine too.



On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic
ognj...@gmail.com mailto:ognj...@gmail.com
mailto:ognj...@gmail.com mailto:ognj...@gmail.com wrote:

Check spam, somehow mine got lost there to.


On Thu, Sep 5, 2013 at 12:58 PM, Luca
superposit...@gmail.com mailto:superposit...@gmail.com
mailto:superposit...@gmail.com
mailto:superposit...@gmail.com wrote:

Hi! I registered yesterday, but didn't receive any mail
confermation...mh mh !...


2013/9/5 Kris Rivel krisri...@gmail.com
mailto:krisri...@gmail.com
mailto:krisri...@gmail.com
mailto:krisri...@gmail.com


Great idea...love it!


On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
n...@altvfx.com mailto:n...@altvfx.com
mailto:n...@altvfx.com mailto:n...@altvfx.com wrote:

Great idea Cris,

Stand by for content!

N
   


*From:*
softimage-boun...@listproc.autodesk.com
mailto:softimage-boun...@listproc.autodesk.com
   
mailto:softimage-boun...@listproc.autodesk.com

mailto:softimage-boun...@listproc.autodesk.com
[softimage-boun...@listproc.autodesk.com
mailto:softimage-boun...@listproc.autodesk.com
   
mailto:softimage-boun...@listproc.autodesk.com

mailto:softimage-boun...@listproc.autodesk.com] on

behalf of Cristobal Infante [cgc...@gmail.com
mailto:cgc...@gmail.com
mailto:cgc...@gmail.com
mailto:cgc...@gmail.com]
*Sent:* 04 September 2013 22:18

*To:* softimage@listproc.autodesk.com
mailto:softimage@listproc.autodesk.com
mailto:softimage@listproc.autodesk.com
mailto:softimage@listproc.autodesk.com
*Subject:* softimage.tv
http://softimage.tv/ http://softimage.tv
http://softimage.tv/ - Hello

World!

Hi All,

Would like to announce the launch of
softimage.tv http://softimage.tv/
http://softimage.tv http://softimage.tv/
created to showcase the best

softimage work out there. It's meant to be
mainly a
video depository but hoping it will also
function as a
hub for the community.

The idea sparked from Andy Moorer's Nike
Evolution
write up on that Nike job, I thought amazing
effort
but how do we showcase it a bit more? The
list and
si-community are great place to discuss soft,
but I
think a lot users are not on it, not to mention
producers, agencies and decision makers.

It is still early days so this is a work in
progress,
we will be adjusting the layout based on the
predominant content we receive. This is where
eveyone
can help us a bit, If you ever created a
tutorial for
soft, uploaded a test, done an amazing tool,
 have a
 showreel to show off, finished a good
looking job
help us by submitting it.

You can directly submit your videos via very
simple
form in the website (Submit video). All you
need to
send is a title, vimeo/youtube url, and
description.
The wordpress will look after the thumbnails,
then all
we have to do is approve it. Ideally you will be
logged in when submitting, so the system will
put all
videos under your profile.

The website was created by myself 

Re: Online render farm recommendations.

2013-09-05 Thread Pingo van der Brinkloev
Foxrenderfarm.com is indeed very good, very helpful via skype chat and quite 
inexpensive. You need to upload your project yourself and I think you can 
upload caches for sims as well - haven't tried this. Good thing about the self 
administered upload is if you make a mistake you just re-upload the scene, and 
not the whole sherbang again.

Rebusfarm.net is also good. You can chat them too. They have a submitter that 
works from within SI. and collects all your images and uploads them for you. 
Very sleek. They cost the same as foxrenderfarm, if you can wait a while for 
your frames (or find the holes where nobody else is rendering) otherwise it's 
double up, but then your frames start immediately and auto-download to your HD 
on completion.

You should try both to see what suits you. They both have free intro deals. 
Also they both have cost calculators that work.

You do need to make sure they're using the same version of SI as you.

Also I don't know how they deal with passes so check that out.

Consider the size of your files. EXR files take up more space and take longer 
to download (obviously)

Good luck!

Pingo

On 04/09/2013, at 01.17, Adam Seeley adam_see...@yahoo.com wrote:

 Hi Cristobel,
 
 Looks good, thanks for pointer.
 
 Adam. 
 -
 http://www.linkedin.com/in/adamseeleyuk
 https://vimeo.com/adamseeley
 
 
 
 
 From: Cristobal Infante cgc...@gmail.com
 To: Adam Seeley adam_see...@yahoo.com; softimage@listproc.autodesk.com 
 softimage@listproc.autodesk.com 
 Sent: Tuesday, 3 September 2013, 18:11
 Subject: Re: Online render farm recommendations.
 
 Hi Adam,
 
 I gave http://www.foxrenderfarm.com/ a shot and they were all right. 
 You have to option to rent on a weekly basis instead of per frame which I 
 think is the way foward.
 
 So you can let that stuff cook without worrying if it burns ;)
 
 C
 
 
 On 3 September 2013 17:25, Adam Seeley adam_see...@yahoo.com wrote:
 Hi,
 
 This hasn't been up for a while so...
 
 Does anybody have recommendations for good value , easy to use render farms.
 
 I'll have a few minutes worth of renders at 3500x5000 pixels to crack out 
 soon.
 
 Standard Mental Ray is fine although good to know if they are Arnolded up as 
 well.
 
 Many thanks,
 
 Adam. 
 -
 http://www.linkedin.com/in/adamseeleyuk
 https://vimeo.com/adamseeley
 
 
 
 



Re: softimage.tv - Hello World!

2013-09-05 Thread Michael Clarke
Great job. 
That's a huge contribution to the community.



On Sep 5, 2013, at 11:48 AM, Cristobal Infante cgc...@gmail.com wrote:

 About 100 user submitted videos between yesterday and today! Phew
 
 but... is that ALL YOU GOT!!! 
 
 
 
 
 On 5 September 2013 15:15, Eric Thivierge ethivie...@hybride.com wrote:
 Yeah mine was in spam as well.
 
 
 On September-05-13 10:13:43 AM, Alan Fregtman wrote:
 Mine too.
 
 
 
 On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com
 mailto:ognj...@gmail.com wrote:
 
 Check spam, somehow mine got lost there to.
 
 
 On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com
 mailto:superposit...@gmail.com wrote:
 
 Hi! I registered yesterday, but didn't receive any mail
 confermation...mh mh !...
 
 
 2013/9/5 Kris Rivel krisri...@gmail.com
 mailto:krisri...@gmail.com
 
 
 Great idea...love it!
 
 
 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
 n...@altvfx.com mailto:n...@altvfx.com wrote:
 
 Great idea Cris,
 
 Stand by for content!
 
 N
 
 
 *From:* softimage-boun...@listproc.autodesk.com
 mailto:softimage-boun...@listproc.autodesk.com
 [softimage-boun...@listproc.autodesk.com
 mailto:softimage-boun...@listproc.autodesk.com] on
 
 behalf of Cristobal Infante [cgc...@gmail.com
 mailto:cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18
 
 *To:* softimage@listproc.autodesk.com
 mailto:softimage@listproc.autodesk.com
 *Subject:* softimage.tv http://softimage.tv - Hello
 
 World!
 
 Hi All,
 
 Would like to announce the launch of softimage.tv
 http://softimage.tv created to showcase the best
 
 softimage work out there. It's meant to be mainly a
 video depository but hoping it will also function as a
 hub for the community.
 
 The idea sparked from Andy Moorer's Nike Evolution
 write up on that Nike job, I thought amazing effort
 but how do we showcase it a bit more? The list and
 si-community are great place to discuss soft, but I
 think a lot users are not on it, not to mention
 producers, agencies and decision makers.
 
 It is still early days so this is a work in progress,
 we will be adjusting the layout based on the
 predominant content we receive. This is where eveyone
 can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a
  showreel to show off, finished a good looking job
 help us by submitting it.
 
 You can directly submit your videos via very simple
 form in the website (Submit video). All you need to
 send is a title, vimeo/youtube url, and description.
 The wordpress will look after the thumbnails, then all
 we have to do is approve it. Ideally you will be
 logged in when submitting, so the system will put all
 videos under your profile.
 
 The website was created by myself with the help of
 Cesar Saez . Would love to know what you guys think
 about it, and how we can move things foward.
 
 Best,
 Cris
 
 
 
 
 
 
 --
 ...superpositiviii...qualunque cosa accada!...
 
 
 
 
 


Michael Clarke Design
Blue C Studios
713-927-9835



Re: Online render farm recommendations.

2013-09-05 Thread Pingo van der Brinkloev
Oh, rebusfarm has an iPhone/android app so you can keep track of your renders 
from the poolside ;)

P

On 05/09/2013, at 23.23, Pingo van der Brinkloev xsil...@comxnet.dk wrote:

 Foxrenderfarm.com is indeed very good, very helpful via skype chat and quite 
 inexpensive. You need to upload your project yourself and I think you can 
 upload caches for sims as well - haven't tried this. Good thing about the 
 self administered upload is if you make a mistake you just re-upload the 
 scene, and not the whole sherbang again.
 
 Rebusfarm.net is also good. You can chat them too. They have a submitter that 
 works from within SI. and collects all your images and uploads them for you. 
 Very sleek. They cost the same as foxrenderfarm, if you can wait a while for 
 your frames (or find the holes where nobody else is rendering) otherwise it's 
 double up, but then your frames start immediately and auto-download to your 
 HD on completion.
 
 You should try both to see what suits you. They both have free intro deals. 
 Also they both have cost calculators that work.
 
 You do need to make sure they're using the same version of SI as you.
 
 Also I don't know how they deal with passes so check that out.
 
 Consider the size of your files. EXR files take up more space and take longer 
 to download (obviously)
 
 Good luck!
 
 Pingo
 
 On 04/09/2013, at 01.17, Adam Seeley adam_see...@yahoo.com wrote:
 
 Hi Cristobel,
 
 Looks good, thanks for pointer.
 
 Adam. 
 -
 http://www.linkedin.com/in/adamseeleyuk
 https://vimeo.com/adamseeley
 
 
 
 
 From: Cristobal Infante cgc...@gmail.com
 To: Adam Seeley adam_see...@yahoo.com; softimage@listproc.autodesk.com 
 softimage@listproc.autodesk.com 
 Sent: Tuesday, 3 September 2013, 18:11
 Subject: Re: Online render farm recommendations.
 
 Hi Adam,
 
 I gave http://www.foxrenderfarm.com/ a shot and they were all right. 
 You have to option to rent on a weekly basis instead of per frame which I 
 think is the way foward.
 
 So you can let that stuff cook without worrying if it burns ;)
 
 C
 
 
 On 3 September 2013 17:25, Adam Seeley adam_see...@yahoo.com wrote:
 Hi,
 
 This hasn't been up for a while so...
 
 Does anybody have recommendations for good value , easy to use render farms.
 
 I'll have a few minutes worth of renders at 3500x5000 pixels to crack out 
 soon.
 
 Standard Mental Ray is fine although good to know if they are Arnolded up as 
 well.
 
 Many thanks,
 
 Adam. 
 -
 http://www.linkedin.com/in/adamseeleyuk
 https://vimeo.com/adamseeley
 
 
 
 
 



Re: softimage.tv - Hello World!

2013-09-05 Thread Adam Sale
Very Cool Site!!
Nice Work Cristo

Adam


On Thu, Sep 5, 2013 at 10:10 AM, Michael Clarke m...@bluecstudios.com wrote:

 Great job.
 That's a huge contribution to the community.



 On Sep 5, 2013, at 11:48 AM, Cristobal Infante cgc...@gmail.com wrote:

 About 100 user submitted videos between yesterday and today! Phew

 but... is that ALL YOU GOT!!!




 On 5 September 2013 15:15, Eric Thivierge ethivie...@hybride.com wrote:

 Yeah mine was in spam as well.


 On September-05-13 10:13:43 AM, Alan Fregtman wrote:

 Mine too.



 On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com
 mailto:ognj...@gmail.com wrote:

 Check spam, somehow mine got lost there to.


 On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com
 mailto:superpositivo@gmail.**com superposit...@gmail.com wrote:

 Hi! I registered yesterday, but didn't receive any mail
 confermation...mh mh !...


 2013/9/5 Kris Rivel krisri...@gmail.com
 mailto:krisri...@gmail.com


 Great idea...love it!


 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
 n...@altvfx.com mailto:n...@altvfx.com wrote:

 Great idea Cris,

 Stand by for content!

 N
 --**
 --**
 *From:* 
 softimage-bounces@listproc.**autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 mailto:softimage-bounces@**listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 
 [softimage-bounces@listproc.**autodesk.comsoftimage-boun...@listproc.autodesk.com
 
 mailto:softimage-bounces@**listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com]
 on

 behalf of Cristobal Infante [cgc...@gmail.com
 mailto:cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18

 *To:* 
 softimage@listproc.autodesk.**comsoftimage@listproc.autodesk.com
 
 mailto:softimage@listproc.**autodesk.comsoftimage@listproc.autodesk.com
 
 *Subject:* softimage.tv http://softimage.tv - Hello

 World!

 Hi All,

 Would like to announce the launch of softimage.tv
 http://softimage.tv created to showcase the best

 softimage work out there. It's meant to be mainly a
 video depository but hoping it will also function as a
 hub for the community.

 The idea sparked from Andy Moorer's Nike Evolution
 write up on that Nike job, I thought amazing effort
 but how do we showcase it a bit more? The list and
 si-community are great place to discuss soft, but I
 think a lot users are not on it, not to mention
 producers, agencies and decision makers.

 It is still early days so this is a work in progress,
 we will be adjusting the layout based on the
 predominant content we receive. This is where eveyone
 can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a
  showreel to show off, finished a good looking job
 help us by submitting it.

 You can directly submit your videos via very simple
 form in the website (Submit video). All you need to
 send is a title, vimeo/youtube url, and description.
 The wordpress will look after the thumbnails, then all
 we have to do is approve it. Ideally you will be
 logged in when submitting, so the system will put all
 videos under your profile.

 The website was created by myself with the help of
 Cesar Saez . Would love to know what you guys think
 about it, and how we can move things foward.

 Best,
 Cris






 --
 ...superpositiviii...qualunque cosa accada!...







 Michael Clarke Design
 Blue C Studios
 713-927-9835




Unsubscribe

2013-09-05 Thread Daniel Kim



Confidentiality Note: The contents of this e-mail message and any attachments 
are confidential and are intended solely for addressee. The information may 
also be legally privileged. This transmission is sent in trust, for the sole 
purpose of delivery to the intended recipient. If you have received this 
transmission in error, any use, reproduction or dissemination of this 
transmission is strictly prohibited. If you are not the intended recipient, 
please immediately notify the sender by reply e-mail or phone and delete this 
message and its attachments, if any.


custom per point vector attributes

2013-09-05 Thread ran sariel
Hey All

within a plugin I'm writing, I'm trying to read a per point attribute
(vector3f) and set it on my mesh.
the topology on that mesh is changing.

looking through the docs, it seems that custom ICE Attribute would be a
good idea, so I went ahead with creating one vie the geometry
 AddIceAttribute method.

ICEAttribute iceAttr = mesh.AddICEAttribute(myVelocity,
siICENodeDataVector3, siICENodeStructureSingle,siICENodeContextComponent0D)
;
CICEAttributeDataArrayVector3f data;
iceAttr.GetDataArray(data);

for (size_t i=0;ivelocities-size();i++)
{
CVector3f
val(velocities-get()[i].x,velocities-get()[i].y,velocities-get()[i].z);
data[(LONG)i]=val;
}

when I compare the attribute that I created to other per point
IceAttributes (like pointVelocity, pointPositions etc), I can see that the
IsConstant method on my attribute is returning True, while on the builtIn
ones it is False/
The size of the data I'm getting from GetDataArray is 1.

what would be the best way to store per point data on mesh nodes with
changing topology.

Cheers
Ran


RE: Unsubscribe

2013-09-05 Thread Sven Constable
I think you need to put unsubscribe in the body, not in the subject.
Wasn't the mail adress also different from softimage@listproc.autodesk.com ?
back in the days it was majordomo@... Dont know whats today. :)

 

sven

 

From: softimage-boun...@listproc.autodesk.com
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Daniel Kim
Sent: Thursday, September 05, 2013 10:50 PM
To: softimage@listproc.autodesk.com
Subject: Unsubscribe

 

 

 

  _  

Confidentiality Note: The contents of this e-mail message and any
attachments are confidential and are intended solely for addressee. The
information may also be legally privileged. This transmission is sent in
trust, for the sole purpose of delivery to the intended recipient. If you
have received this transmission in error, any use, reproduction or
dissemination of this transmission is strictly prohibited. If you are not
the intended recipient, please immediately notify the sender by reply e-mail
or phone and delete this message and its attachments, if any.



RE: Unsubscribe

2013-09-05 Thread Daniel Kim
Ah, okay. Thanks for the info.
I should find out that email address first.

Thanks

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Sven Constable
Sent: Friday, September 06, 2013 8:57 AM
To: softimage@listproc.autodesk.com
Subject: RE: Unsubscribe

I think you need to put unsubscribe in the body, not in the subject. Wasn't 
the mail adress also different from 
softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com ? back 
in the days it was majordomo@... Dont know whats today. :)

sven

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Daniel Kim
Sent: Thursday, September 05, 2013 10:50 PM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: Unsubscribe




Confidentiality Note: The contents of this e-mail message and any attachments 
are confidential and are intended solely for addressee. The information may 
also be legally privileged. This transmission is sent in trust, for the sole 
purpose of delivery to the intended recipient. If you have received this 
transmission in error, any use, reproduction or dissemination of this 
transmission is strictly prohibited. If you are not the intended recipient, 
please immediately notify the sender by reply e-mail or phone and delete this 
message and its attachments, if any.


Confidentiality Note: The contents of this e-mail message and any attachments 
are confidential and are intended solely for addressee. The information may 
also be legally privileged. This transmission is sent in trust, for the sole 
purpose of delivery to the intended recipient. If you have received this 
transmission in error, any use, reproduction or dissemination of this 
transmission is strictly prohibited. If you are not the intended recipient, 
please immediately notify the sender by reply e-mail or phone and delete this 
message and its attachments, if any.


arrays yet again

2013-09-05 Thread Ponthieux, Joseph G. (LARC-E1A)[LITES]
Howdy,

I want to build a 100 index array in ICE that looks like

0,0,1,1,0,0,1,1,00,1,1 etc

I'm guessing that this is doable, but I'm stumped.

--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.



Re: softimage.tv - Hello World!

2013-09-05 Thread Pingo van der Brinkloev
Great initiative!

Cheers

P

On 05/09/2013, at 22.34, David Gallagher davegsoftimagel...@gmail.com wrote:

 
 So happy to see this!
 
 Great job Cris and Cesar.
 
 Dave G
 
 On 9/5/2013 11:10 AM, Michael Clarke wrote:
 Great job. 
 That's a huge contribution to the community.
 
 
 
 On Sep 5, 2013, at 11:48 AM, Cristobal Infante cgc...@gmail.com wrote:
 
 About 100 user submitted videos between yesterday and today! Phew
 
 but... is that ALL YOU GOT!!! 
 
 
 
 
 On 5 September 2013 15:15, Eric Thivierge ethivie...@hybride.com wrote:
 Yeah mine was in spam as well.
 
 
 On September-05-13 10:13:43 AM, Alan Fregtman wrote:
 Mine too.
 
 
 
 On Thu, Sep 5, 2013 at 9:21 AM, Ognjen Vukovic ognj...@gmail.com
 mailto:ognj...@gmail.com wrote:
 
 Check spam, somehow mine got lost there to.
 
 
 On Thu, Sep 5, 2013 at 12:58 PM, Luca superposit...@gmail.com
 mailto:superposit...@gmail.com wrote:
 
 Hi! I registered yesterday, but didn't receive any mail
 confermation...mh mh !...
 
 
 2013/9/5 Kris Rivel krisri...@gmail.com
 mailto:krisri...@gmail.com
 
 
 Great idea...love it!
 
 
 On Wed, Sep 4, 2013 at 8:10 PM, Nick Angus
 n...@altvfx.com mailto:n...@altvfx.com wrote:
 
 Great idea Cris,
 
 Stand by for content!
 
 N
 
 
 *From:* softimage-boun...@listproc.autodesk.com
 mailto:softimage-boun...@listproc.autodesk.com
 [softimage-boun...@listproc.autodesk.com
 mailto:softimage-boun...@listproc.autodesk.com] on
 
 behalf of Cristobal Infante [cgc...@gmail.com
 mailto:cgc...@gmail.com]
 *Sent:* 04 September 2013 22:18
 
 *To:* softimage@listproc.autodesk.com
 mailto:softimage@listproc.autodesk.com
 *Subject:* softimage.tv http://softimage.tv - Hello
 
 World!
 
 Hi All,
 
 Would like to announce the launch of softimage.tv
 http://softimage.tv created to showcase the best
 
 softimage work out there. It's meant to be mainly a
 video depository but hoping it will also function as a
 hub for the community.
 
 The idea sparked from Andy Moorer's Nike Evolution
 write up on that Nike job, I thought amazing effort
 but how do we showcase it a bit more? The list and
 si-community are great place to discuss soft, but I
 think a lot users are not on it, not to mention
 producers, agencies and decision makers.
 
 It is still early days so this is a work in progress,
 we will be adjusting the layout based on the
 predominant content we receive. This is where eveyone
 can help us a bit, If you ever created a tutorial for
 soft, uploaded a test, done an amazing tool,  have a
  showreel to show off, finished a good looking job
 help us by submitting it.
 
 You can directly submit your videos via very simple
 form in the website (Submit video). All you need to
 send is a title, vimeo/youtube url, and description.
 The wordpress will look after the thumbnails, then all
 we have to do is approve it. Ideally you will be
 logged in when submitting, so the system will put all
 videos under your profile.
 
 The website was created by myself with the help of
 Cesar Saez . Would love to know what you guys think
 about it, and how we can move things foward.
 
 Best,
 Cris
 
 
 
 
 
 
 --
 ...superpositiviii...qualunque cosa accada!...
 
 
 
 
 
 
 
 Michael Clarke Design
 Blue C Studios
 713-927-9835
 
 



Re: arrays yet again

2013-09-05 Thread David Barosin
Where are the values coming from?   You could convert a string to an array
(String to Array Node)
Or use a (build array from constant node) and replace the values with
whatever method you need (modulo etc...)



On Thu, Sep 5, 2013 at 7:06 PM, Ponthieux, Joseph G. (LARC-E1A)[LITES] 
j.ponthi...@nasa.gov wrote:

  OR….

 ** **

 An array that looks like

 ** **

 0,1,4,5,8,9,12,13,16,17,20,21,etc

 ** **

 would also do…

 ** **

 Thanks

 --

 Joey Ponthieux

 LaRC Information Technology Enhanced Services (LITES)

 Mymic Technical Services

 NASA Langley Research Center

 __

 Opinions stated here-in are strictly those of the author and do not 

 represent the opinions of NASA or any other party.

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [mailto:
 softimage-boun...@listproc.autodesk.com] *On Behalf Of *Ponthieux, Joseph
 G. (LARC-E1A)[LITES]
 *Sent:* Thursday, September 05, 2013 6:51 PM
 *To:* softimage@listproc.autodesk.com
 *Subject:* arrays yet again

 ** **

 Howdy,

 ** **

 I want to build a 100 index array in ICE that looks like

 ** **

 0,0,1,1,0,0,1,1,00,1,1 etc

 ** **

 I’m guessing that this is doable, but I’m stumped.

 ** **

 --

 Joey Ponthieux

 LaRC Information Technology Enhanced Services (LITES)

 Mymic Technical Services

 NASA Langley Research Center

 __

 Opinions stated here-in are strictly those of the author and do not 

 represent the opinions of NASA or any other party.

 ** **



RE: arrays yet again

2013-09-05 Thread Grahame Fuller
For the first case, here's one way:

Build an index array of the size you want, and modulo the result by 4.

Build an array [0,0,1,1].

Use the result of the modulo to select a value from this array.

gray

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, Joseph 
G. (LARC-E1A)[LITES]
Sent: Thursday, September 05, 2013 7:06 PM
To: softimage@listproc.autodesk.com
Subject: RE: arrays yet again

OR

An array that looks like

0,1,4,5,8,9,12,13,16,17,20,21,etc

would also do...

Thanks
--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, 
Joseph G. (LARC-E1A)[LITES]
Sent: Thursday, September 05, 2013 6:51 PM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: arrays yet again

Howdy,

I want to build a 100 index array in ICE that looks like

0,0,1,1,0,0,1,1,00,1,1 etc

I'm guessing that this is doable, but I'm stumped.

--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.

attachment: winmail.dat

RE: arrays yet again

2013-09-05 Thread Ponthieux, Joseph G. (LARC-E1A)[LITES]
OR

An array that looks like

0,1,4,5,8,9,12,13,16,17,20,21,etc

would also do...

Thanks
--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, Joseph 
G. (LARC-E1A)[LITES]
Sent: Thursday, September 05, 2013 6:51 PM
To: softimage@listproc.autodesk.com
Subject: arrays yet again

Howdy,

I want to build a 100 index array in ICE that looks like

0,0,1,1,0,0,1,1,00,1,1 etc

I'm guessing that this is doable, but I'm stumped.

--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.



Re: arrays yet again

2013-09-05 Thread Daniel Brassard
The other array is also a modulo, this time devided by 2 to select between
two values in an array {1,3} and add to the previous number in the main
array like so, starting at zero, previous plus one, previous plus three,
previous plus one, previous plus three and so on.


On Thu, Sep 5, 2013 at 7:44 PM, David Barosin dbaro...@gmail.com wrote:

 Where are the values coming from?   You could convert a string to an array
 (String to Array Node)
 Or use a (build array from constant node) and replace the values with
 whatever method you need (modulo etc...)



 On Thu, Sep 5, 2013 at 7:06 PM, Ponthieux, Joseph G. (LARC-E1A)[LITES] 
 j.ponthi...@nasa.gov wrote:

  OR….

 ** **

 An array that looks like

 ** **

 0,1,4,5,8,9,12,13,16,17,20,21,etc

 ** **

 would also do…

 ** **

 Thanks

 --

 Joey Ponthieux

 LaRC Information Technology Enhanced Services (LITES)

 Mymic Technical Services

 NASA Langley Research Center

 __

 Opinions stated here-in are strictly those of the author and do not 

 represent the opinions of NASA or any other party.

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [mailto:
 softimage-boun...@listproc.autodesk.com] *On Behalf Of *Ponthieux,
 Joseph G. (LARC-E1A)[LITES]
 *Sent:* Thursday, September 05, 2013 6:51 PM
 *To:* softimage@listproc.autodesk.com
 *Subject:* arrays yet again

 ** **

 Howdy,

 ** **

 I want to build a 100 index array in ICE that looks like

 ** **

 0,0,1,1,0,0,1,1,00,1,1 etc

 ** **

 I’m guessing that this is doable, but I’m stumped.

 ** **

 --

 Joey Ponthieux

 LaRC Information Technology Enhanced Services (LITES)

 Mymic Technical Services

 NASA Langley Research Center

 __

 Opinions stated here-in are strictly those of the author and do not 

 represent the opinions of NASA or any other party.

 ** **





RE: arrays yet again

2013-09-05 Thread Matt Lind
I'm not sure if this is easy in ICE, but in coding you could build that pattern 
very easily with a truth table and an XOR operator.


Matt



From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Grahame Fuller
Sent: Thursday, September 05, 2013 4:40 PM
To: softimage@listproc.autodesk.com
Subject: RE: arrays yet again

For the first case, here's one way:

Build an index array of the size you want, and modulo the result by 4.

Build an array [0,0,1,1].

Use the result of the modulo to select a value from this array.

gray

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, 
Joseph G. (LARC-E1A)[LITES]
Sent: Thursday, September 05, 2013 7:06 PM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: RE: arrays yet again

OR

An array that looks like

0,1,4,5,8,9,12,13,16,17,20,21,etc

would also do...

Thanks
--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Ponthieux, 
Joseph G. (LARC-E1A)[LITES]
Sent: Thursday, September 05, 2013 6:51 PM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: arrays yet again

Howdy,

I want to build a 100 index array in ICE that looks like

0,0,1,1,0,0,1,1,00,1,1 etc

I'm guessing that this is doable, but I'm stumped.

--
Joey Ponthieux
LaRC Information Technology Enhanced Services (LITES)
Mymic Technical Services
NASA Langley Research Center
__
Opinions stated here-in are strictly those of the author and do not
represent the opinions of NASA or any other party.



Re: Unsubscribe

2013-09-05 Thread Mirko Jankovic
hey Daniel, where are you going man? :)


On Thu, Sep 5, 2013 at 11:21 PM, Daniel Kim dani...@magicboxandapps.comwrote:

  Ah, okay. Thanks for the info.

 I should find out that email address first.

 ** **

 Thanks

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [mailto:
 softimage-boun...@listproc.autodesk.com] *On Behalf Of *Sven Constable
 *Sent:* Friday, September 06, 2013 8:57 AM
 *To:* softimage@listproc.autodesk.com
 *Subject:* RE: Unsubscribe

 ** **

 I think you need to put unsubscribe in the body, not in the subject.
 Wasn't the mail adress also different from softimage@listproc.autodesk.com? 
 back in the days it was majordomo@...
 Dont know whats today. :)

 ** **

 sven

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [
 mailto:softimage-boun...@listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com]
 *On Behalf Of *Daniel Kim
 *Sent:* Thursday, September 05, 2013 10:50 PM
 *To:* softimage@listproc.autodesk.com
 *Subject:* Unsubscribe

 ** **

 ** **

 ** **
  --

 Confidentiality Note: The contents of this e-mail message and any
 attachments are confidential and are intended solely for addressee. The
 information may also be legally privileged. This transmission is sent in
 trust, for the sole purpose of delivery to the intended recipient. If you
 have received this transmission in error, any use, reproduction or
 dissemination of this transmission is strictly prohibited. If you are not
 the intended recipient, please immediately notify the sender by reply
 e-mail or phone and delete this message and its attachments, if any.

 --
 Confidentiality Note: The contents of this e-mail message and any
 attachments are confidential and are intended solely for addressee. The
 information may also be legally privileged. This transmission is sent in
 trust, for the sole purpose of delivery to the intended recipient. If you
 have received this transmission in error, any use, reproduction or
 dissemination of this transmission is strictly prohibited. If you are not
 the intended recipient, please immediately notify the sender by reply
 e-mail or phone and delete this message and its attachments, if any.



Re: Unsubscribe

2013-09-05 Thread Daniel Kim
I'm just here Mirko @_@ just wanted to unsubscribe office email :) But
still don't know how to unsubscribe...


On Fri, Sep 6, 2013 at 4:34 PM, Mirko Jankovic mirkoj.anima...@gmail.comwrote:

 hey Daniel, where are you going man? :)


 On Thu, Sep 5, 2013 at 11:21 PM, Daniel Kim 
 dani...@magicboxandapps.comwrote:

  Ah, okay. Thanks for the info.

 I should find out that email address first.

 ** **

 Thanks

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [mailto:
 softimage-boun...@listproc.autodesk.com] *On Behalf Of *Sven Constable
 *Sent:* Friday, September 06, 2013 8:57 AM
 *To:* softimage@listproc.autodesk.com
 *Subject:* RE: Unsubscribe

 ** **

 I think you need to put unsubscribe in the body, not in the subject.
 Wasn't the mail adress also different from
 softimage@listproc.autodesk.com ? back in the days it was majordomo@...
 Dont know whats today. :)

 ** **

 sven

 ** **

 *From:* softimage-boun...@listproc.autodesk.com [
 mailto:softimage-boun...@listproc.autodesk.comsoftimage-boun...@listproc.autodesk.com]
 *On Behalf Of *Daniel Kim
 *Sent:* Thursday, September 05, 2013 10:50 PM
 *To:* softimage@listproc.autodesk.com
 *Subject:* Unsubscribe

 ** **

 ** **

 ** **
  --

 Confidentiality Note: The contents of this e-mail message and any
 attachments are confidential and are intended solely for addressee. The
 information may also be legally privileged. This transmission is sent in
 trust, for the sole purpose of delivery to the intended recipient. If you
 have received this transmission in error, any use, reproduction or
 dissemination of this transmission is strictly prohibited. If you are not
 the intended recipient, please immediately notify the sender by reply
 e-mail or phone and delete this message and its attachments, if any.

 --
 Confidentiality Note: The contents of this e-mail message and any
 attachments are confidential and are intended solely for addressee. The
 information may also be legally privileged. This transmission is sent in
 trust, for the sole purpose of delivery to the intended recipient. If you
 have received this transmission in error, any use, reproduction or
 dissemination of this transmission is strictly prohibited. If you are not
 the intended recipient, please immediately notify the sender by reply
 e-mail or phone and delete this message and its attachments, if any.





-- 
---
Daniel Kim
Animation Director  Professional 3D Generalist
http://www.danielkim3d.com
---


RE: Unsubscribe

2013-09-05 Thread Chris Chia
Hi Daniel,
It's done! dani...@magicboxandapps.commailto:dani...@magicboxandapps.com has 
been removed.

Cheers,
Chris

From: softimage-boun...@listproc.autodesk.com 
[mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Daniel Kim
Sent: Friday, September 06, 2013 12:57 PM
To: softimage@listproc.autodesk.com
Subject: Re: Unsubscribe

I'm just here Mirko @_@ just wanted to unsubscribe office email :) But still 
don't know how to unsubscribe...

On Fri, Sep 6, 2013 at 4:34 PM, Mirko Jankovic 
mirkoj.anima...@gmail.commailto:mirkoj.anima...@gmail.com wrote:
hey Daniel, where are you going man? :)

On Thu, Sep 5, 2013 at 11:21 PM, Daniel Kim 
dani...@magicboxandapps.commailto:dani...@magicboxandapps.com wrote:
Ah, okay. Thanks for the info.
I should find out that email address first.

Thanks

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 
[mailto:softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com]
 On Behalf Of Sven Constable
Sent: Friday, September 06, 2013 8:57 AM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: RE: Unsubscribe

I think you need to put unsubscribe in the body, not in the subject. Wasn't 
the mail adress also different from 
softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com ? back 
in the days it was majordomo@... Dont know whats today. :)

sven

From: 
softimage-boun...@listproc.autodesk.commailto:softimage-boun...@listproc.autodesk.com
 [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Daniel Kim
Sent: Thursday, September 05, 2013 10:50 PM
To: softimage@listproc.autodesk.commailto:softimage@listproc.autodesk.com
Subject: Unsubscribe




Confidentiality Note: The contents of this e-mail message and any attachments 
are confidential and are intended solely for addressee. The information may 
also be legally privileged. This transmission is sent in trust, for the sole 
purpose of delivery to the intended recipient. If you have received this 
transmission in error, any use, reproduction or dissemination of this 
transmission is strictly prohibited. If you are not the intended recipient, 
please immediately notify the sender by reply e-mail or phone and delete this 
message and its attachments, if any.


Confidentiality Note: The contents of this e-mail message and any attachments 
are confidential and are intended solely for addressee. The information may 
also be legally privileged. This transmission is sent in trust, for the sole 
purpose of delivery to the intended recipient. If you have received this 
transmission in error, any use, reproduction or dissemination of this 
transmission is strictly prohibited. If you are not the intended recipient, 
please immediately notify the sender by reply e-mail or phone and delete this 
message and its attachments, if any.




--
---
Daniel Kim
Animation Director  Professional 3D Generalist
http://www.danielkim3d.com
---

attachment: winmail.dat