Re: [Maya-Python] VertexConstraint

2018-05-21 Thread AK Eric
"Python as CPython implements it simply isn't multithreaded ;-) " Right, I should have been more specific ;) -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from

Re: [Maya-Python] Parallel Evaluation Examples

2018-05-21 Thread Joe Weidenbach
The first thing to realise about Parallel Evaluation is that it's different than DG evaluation -- A lot of the assumptions we made for DG mode are incorrect when considering parallel mode. The second piece is that it's buggy in 2016 (for example, nodes will still be evaluated even if they're

Re: [Maya-Python] VertexConstraint

2018-05-21 Thread Angelo Sta. Catalina
With GPU, even hidden meshes are evaluated. On Mon, May 21, 2018, 8:12 AM Daniele Dolci wrote: > Hi, >> >> > This is why I created a low res driver and I have hidden it from the > viewport. if both the low res driver and the controls are hidden, only the > high res

Re: [Maya-Python] VertexConstraint

2018-05-21 Thread Daniele Dolci
> > Hi, > > This is why I created a low res driver and I have hidden it from the viewport. if both the low res driver and the controls are hidden, only the high res mesh will be evaluated. -- You received this message because you are subscribed to the Google Groups "Python Programming

Re: [Maya-Python] VertexConstraint

2018-05-21 Thread Angelo Sta. Catalina
You cant attach anything to a vertex without loosing GPU parallel functionality. Maya sends calculation data to display the geometry to the GPU. GPU then sends it to your monitor. When you attach anything to a piece of geo, it has to be calculated in the CPU. When this happens, Maya automatically

[Maya-Python] Parallel Evaluation Examples

2018-05-21 Thread Marcus Ottosson
Hi all, Sparked by an interesting thread recently, I’m trying to get a better handle on the new evaluation mode in Maya 2016+, and am looking for examples of where it has a positive impact. Conceptually, I think it makes

[Maya-Python] Need to create some kind of dynamic constraint ?

2018-05-21 Thread Virbhadra Gupta
Hello I am trying to create script that will connect wheels to ground. My approch is i am trying to connect only translation y with poly mesh. Geometry constraint is only option. But we can't control connection it connects all transactions attributes. Any suggestions will be helpful. -- You