VRay hex encode and decoding tool for maya
Go to file
indigo 5a0b1a209e Init git 2023-09-24 20:49:29 +08:00
.vscode Init git 2023-09-24 20:49:29 +08:00
cmake/modules Init git 2023-09-24 20:49:29 +08:00
src Init git 2023-09-24 20:49:29 +08:00
.hgignore Init git 2023-09-24 20:49:29 +08:00
CMakeLists.txt Init git 2023-09-24 20:49:29 +08:00
README.md Init git 2023-09-24 20:49:29 +08:00

README.md

VRayHexer

This is a tool for convert data structure into HEX string, now support

  • TraceTransform

VRayHexerMaya

The plugin is convert object transformation ( MMatrix ) to HEX string.

Example

import maya.cmds as  cmds
cmds.VraySceneHexer('pCube1', q=True, transformHex=True)
# result :[u'0000803F0000000000000000000000000000803F0000000000000000000000000000803F00000000000000000000000000000000000000000000000000000000']

VRayHexerPython

This is a python module for generate HEX string from matrix class.

Example

from VRayHexer import TraceTransform
tm = TraceTransform()
tm.getHex()
# result : u'0000803F0000000000000000000000000000803F0000000000000000000000000000803F00000000000000000000000000000000000000000000000000000000'