How to import a python array into the emitter #677
-
Hi, in the last discussion, we successfully imported the binary file into the emitter and using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You are correct, this is not supported. I would suggest looking at the |
Beta Was this translation helpful? Give feedback.
Hi @yangocean-sudo
You are correct, this is not supported.
I would suggest looking at the
bitmap
plugin or thegrid
plugin. Both can accept a runtime constructed object in their constructorprops
.For example the
grid
(documentation) will accept aVolumeGrid
object that is created at runtime. And aVolumeGrid
has a special Python constructor that accepts NumPy types. The idea would be to create something similar to aVolumeGrid
object. (If you're feeling lazy you can most likely re-use theVolumeGrid
object and just treat it as a buffer)