How can I render this and make it look realistic? #202
Replies: 3 comments 4 replies
-
Hi, so first of all to get the Paraview addon to work correctly, you need to follow the steps outlined here https://github.com/InteractiveComputerGraphics/SPlisHSPlasH/tree/master/Scripts/Paraview . If you do this correctly, then you will get rid of the The other thing is, that both addons are simply there for loading the raw data, i.e. the particle data. If what you want is to reconstruct a mesh from the particles, you would have to look for a surface reconstruction tool, or implement one yourself. One tool written by a colleague is available open source at https://github.com/w1th0utnam3/splashsurf . You can use this to reconstruct a mesh from the particle data, load this into Paraview or Blender, and render it to get a more "realistic" visualization of your simulation. Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
Can you please checkt that you have the correct Python version? To get the Paraview plugin running you need the same version as Paraview uses. |
Beta Was this translation helpful? Give feedback.
-
Start Paraview and take a look in menu "Help" -> "About". Probably it is Python 3.9 |
Beta Was this translation helpful? Give feedback.
-
I see some other people saying to use ParaView and others to use your blender addon, blender-sequence loader. I have both of these installed and for ParaView, I cannot make the .vtk file into a volume because of a non-tetrahedralized cell, and the partio plugin returns this error...
I think the main cause is that it doesn't find module partio, so i tried downloading from disney github and the
pip install partio
command doesnt work anymore and I also tried runningpython setup.py build_ext
and it still returned errors...For blender I successfully built and imported the addon into blender it works fine and I am able to render as well, but the geometry nodes just add balls to the particle points and it doesn't look realistic at all... just for fun I decided to do a small render to show
bgeocompress.mp4
I think maybe someone could provide geometry node setup to make it look good, but I would prefer to just render it in ParaView if that is possible.
Beta Was this translation helpful? Give feedback.
All reactions