RE: PLUG: Fabric 2.2 Released!

2016-05-12 Thread Tim Bolland
That's really cool! Thank you for the updates guys.
Tim

Date: Wed, 11 May 2016 23:29:45 +0200
Subject: Re: PLUG: Fabric 2.2 Released!
From: sebastien.sterl...@gmail.com
To: softimage@listproc.autodesk.com

"Python! Canvas has been converted to a Python app making it 
straightforward to create purpose-built applications. Using the source 
code to the Canvas python files, you can automate the creation and 
modification of Canvas graphs without needing to know C++."

Does this mean Canvas is no longer powered by KL ?

On 11 May 2016 at 19:24, Eric Thivierge <ethivie...@gmail.com> wrote:
A Fabric point release - 2.2 is here! Python bindings have been introduced and 
TDs no longer need to go through build environment woes. :) Tons of bug fixes 
as well so checkout the release notes here for a list of many of them:
http://docs.fabric-engine.com/FabricEngine/2.2.0/HTML/ReleaseNotes/2.2.0.html

We're also shipping v1.0 of the MODO integration and have moved to the next 
phase of the Max integration.2.2 Release Blog: 
http://fabricengine.com/fabric-engine-2-2/
Python 
overview:http://fabricengine.com/fabric-engine-2-2-python-bindings-making-easier-build-fabric-applications/


Eric Thivierge
http://www.ethivierge.com


--

Softimage Mailing List.

To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.



--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm. 
  --
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-12 Thread Sebastien Sterling
Awesome :)

On 12 May 2016 at 06:52, Eric Thivierge  wrote:

> No and start up time has been improved a lot!
>
> --
> Softimage Mailing List.
> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
> with "unsubscribe" in the subject, and reply to confirm.
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Eric Thivierge
No and start up time has been improved a lot!
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Sebastien Sterling
Does any of this affect performance ?

On 12 May 2016 at 01:45, Sebastien Sterling 
wrote:

> So this is to do with UI building, making it more accessible.
>
> I suppose it is a little odd to offer an alternative to c++ coding, and
> then still have c++ for building interfaces :P
>
> On 12 May 2016 at 00:33, Eric Thivierge  wrote:
>
>> The Python bindings of the UI widgets is a first step and is going to be
>> worked on more going forward but this means that users can now build their
>> own stand alone applications using Python instead of C++ to use the
>> provided widgets but also their own. Users can also use the canvas.py and
>> CanvasWindow.py files as a template to build their own application
>> completely from the ground up using those files as a template on how to
>> create a Fabric client and interact with it. Referencing the FabricUI repo
>> on github for those wrapped widgets helps and if you're familiar with
>> PySide / PyQt you'll understand them pretty easily. :)
>>
>> Have a look at the Alembic Viewer as I included a few custom widgets
>> (done completely in Python) that interact with the graph that runs the
>> application to see how easy it is!
>>
>> 
>> Eric Thivierge
>> http://www.ethivierge.com
>>
>>
>> --
>> Softimage Mailing List.
>> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
>> with "unsubscribe" in the subject, and reply to confirm.
>>
>
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Sebastien Sterling
So this is to do with UI building, making it more accessible.

I suppose it is a little odd to offer an alternative to c++ coding, and
then still have c++ for building interfaces :P

On 12 May 2016 at 00:33, Eric Thivierge  wrote:

> The Python bindings of the UI widgets is a first step and is going to be
> worked on more going forward but this means that users can now build their
> own stand alone applications using Python instead of C++ to use the
> provided widgets but also their own. Users can also use the canvas.py and
> CanvasWindow.py files as a template to build their own application
> completely from the ground up using those files as a template on how to
> create a Fabric client and interact with it. Referencing the FabricUI repo
> on github for those wrapped widgets helps and if you're familiar with
> PySide / PyQt you'll understand them pretty easily. :)
>
> Have a look at the Alembic Viewer as I included a few custom widgets (done
> completely in Python) that interact with the graph that runs the
> application to see how easy it is!
>
> 
> Eric Thivierge
> http://www.ethivierge.com
>
>
> --
> Softimage Mailing List.
> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
> with "unsubscribe" in the subject, and reply to confirm.
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Eric Thivierge
The Python bindings of the UI widgets is a first step and is going to be
worked on more going forward but this means that users can now build their
own stand alone applications using Python instead of C++ to use the
provided widgets but also their own. Users can also use the canvas.py and
CanvasWindow.py files as a template to build their own application
completely from the ground up using those files as a template on how to
create a Fabric client and interact with it. Referencing the FabricUI repo
on github for those wrapped widgets helps and if you're familiar with
PySide / PyQt you'll understand them pretty easily. :)

Have a look at the Alembic Viewer as I included a few custom widgets (done
completely in Python) that interact with the graph that runs the
application to see how easy it is!


Eric Thivierge
http://www.ethivierge.com
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Steven Caron
Basically the UI is being made in Python and some new functionality to
control the creation of Canvas with Python scripts (think Softimage's
scripting to create ICE graphs)

But it is more nuanced than that... Fabric's core has had python bindings
for a while now. The UI widgets for the Canvas application was made in C++
using Qt Framework but those widgets are now exposed so you can use them in
your own Python Qt app. Those individual widgets haven't been entirely
rewritten in Python.

On Wed, May 11, 2016 at 2:29 PM, Sebastien Sterling <
sebastien.sterl...@gmail.com> wrote:

>
>
> Does this mean Canvas is no longer powered by KL ?
>
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Ahmidou Lyazidi
It means the standalone application is now using pyqt instead of qt c++
Le 2016-05-11 17:30, "Sebastien Sterling"  a
écrit :

> "Python! Canvas has been converted to a Python app making it
> straightforward to create purpose-built applications. Using the source code
> to the Canvas python files, you can automate the creation and modification
> of Canvas graphs without needing to know C++."
>
> Does this mean Canvas is no longer powered by KL ?
>
> On 11 May 2016 at 19:24, Eric Thivierge  wrote:
>
>> A Fabric point release - 2.2 is here! Python bindings have been
>> introduced and TDs no longer need to go through build environment woes. :)
>> Tons of bug fixes as well so checkout the release notes here for a list of
>> many of them:
>>
>> http://docs.fabric-engine.com/FabricEngine/2.2.0/HTML/ReleaseNotes/2.2.0.html
>>
>> We're also shipping v1.0 of the MODO integration and have moved to the
>> next phase of the Max integration.
>>
>> 2.2 Release Blog: http://fabricengine.com/fabric-engine-2-2/
>>
>> Python overview:
>>
>> http://fabricengine.com/fabric-engine-2-2-python-bindings-making-easier-build-fabric-applications/
>>
>>
>> 
>> Eric Thivierge
>> http://www.ethivierge.com
>>
>> --
>> Softimage Mailing List.
>> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
>> with "unsubscribe" in the subject, and reply to confirm.
>>
>
>
> --
> Softimage Mailing List.
> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
> with "unsubscribe" in the subject, and reply to confirm.
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

Re: PLUG: Fabric 2.2 Released!

2016-05-11 Thread Sebastien Sterling
"Python! Canvas has been converted to a Python app making it
straightforward to create purpose-built applications. Using the source code
to the Canvas python files, you can automate the creation and modification
of Canvas graphs without needing to know C++."

Does this mean Canvas is no longer powered by KL ?

On 11 May 2016 at 19:24, Eric Thivierge  wrote:

> A Fabric point release - 2.2 is here! Python bindings have been introduced
> and TDs no longer need to go through build environment woes. :) Tons of bug
> fixes as well so checkout the release notes here for a list of many of them:
>
> http://docs.fabric-engine.com/FabricEngine/2.2.0/HTML/ReleaseNotes/2.2.0.html
>
> We're also shipping v1.0 of the MODO integration and have moved to the
> next phase of the Max integration.
>
> 2.2 Release Blog: http://fabricengine.com/fabric-engine-2-2/
>
> Python overview:
>
> http://fabricengine.com/fabric-engine-2-2-python-bindings-making-easier-build-fabric-applications/
>
>
> 
> Eric Thivierge
> http://www.ethivierge.com
>
> --
> Softimage Mailing List.
> To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com
> with "unsubscribe" in the subject, and reply to confirm.
>
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.

PLUG: Fabric 2.2 Released!

2016-05-11 Thread Eric Thivierge
A Fabric point release - 2.2 is here! Python bindings have been introduced
and TDs no longer need to go through build environment woes. :) Tons of bug
fixes as well so checkout the release notes here for a list of many of them:
http://docs.fabric-engine.com/FabricEngine/2.2.0/HTML/ReleaseNotes/2.2.0.html

We're also shipping v1.0 of the MODO integration and have moved to the next
phase of the Max integration.

2.2 Release Blog: http://fabricengine.com/fabric-engine-2-2/

Python overview:
http://fabricengine.com/fabric-engine-2-2-python-bindings-making-easier-build-fabric-applications/



Eric Thivierge
http://www.ethivierge.com
--
Softimage Mailing List.
To unsubscribe, send a mail to softimage-requ...@listproc.autodesk.com with 
"unsubscribe" in the subject, and reply to confirm.