099 Experimental Beta 2017.5540 posted

IMPORTANT - Keyboard shortcuts have some changes!
In our research into foreign keyboards and unicode support, we discovered the need stop using ‘alt’ as a shortcut modifier in text input fields. These changes are the result of this and to keep related actions consistent.
The changes are:
Open Current DAT in External Editor - “ctrl+e/cmd+e” (replacing “alt+e”) open either a parameter expression field or the Current DAT in your external editor.
Run Current DAT Script - “ctrl+r/cmd+r” (replacing"alt+r") will run the script in the Current DAT.

This build also has improvements to the BlackTrax CHOP and Text SOP, some new python additions, and a number of crash and bug fixes.

Release Notes

Download

[size=50]codename:sanfrancisco[/size]

Very cool!
but where is the definition of rotateOnAxis() method ?
derivative.ca/wiki099/index. … trix_Class

Sorry, the wiki docs for python changes were not spit out yet. Will look at updating as soon as possible.

:astonished: Since when was alt+r script run shortcute??

:astonished: :astonished: :astonished: :astonished: :astonished:

Since 2017.3580

You can always get help for a Python method by using the built-in help() method in Python.
For example

help(tdu.Matrix.rotateOnAxis)

or if you already have a matrix object:

help(m.rotateOnAxis)

Thanks Malcolm,
didn’t know \ forget that one.