Diego A Grimaldi Posted April 18, 2015 Share Posted April 18, 2015 Wow beautiful Eetu and thx for sharing the file. That thing in the pic looks like yummy marshmallow Quote Link to comment Share on other sites More sharing options...
musamaster Posted April 20, 2015 Share Posted April 20, 2015 Ah brilliant! Very smart with testing the intersection by displacing it first. Great stuff man...(insert praying avatar) Quote Link to comment Share on other sites More sharing options...
jordibares Posted April 22, 2015 Share Posted April 22, 2015 This community is one of the reasons Houdini is the clear winner in my opinion, just brilliant. I will need a lot of time to get what is going on surely this will be valuable learning material in the near future ;-) Quote Link to comment Share on other sites More sharing options...
Wooshum Posted April 23, 2015 Share Posted April 23, 2015 I just held a two-day workshop on growth techniques at Bartlett School of Architecture this week, and quite liked it, maybe I'll make a video tutorial on this stuff Mate a video tutorial on the quaddel growth stuff would be epic! It is also good to see someone from this forum cracking the architecture establishment; VFX skills are so transferable among many different industries - architecture being one of them. I currently work in urban research and design and am trying to get houdini up and running in our office! Quote Link to comment Share on other sites More sharing options...
anto187 Posted May 26, 2015 Share Posted May 26, 2015 great stuff...thanks for sharring with us...hope all best for you mate Quote Link to comment Share on other sites More sharing options...
NSDesign Posted July 6, 2015 Share Posted July 6, 2015 Hi Eetu, The work you've done on the Quadell is great. Can you share the source / papers of the math involved. Thanks Quote Link to comment Share on other sites More sharing options...
davpe Posted December 2, 2015 Share Posted December 2, 2015 Something a bit older, as with much of these things I was supposed to do something good looking with it, but as that hasn't happened yet I'll just post these This ugly thing is a texture map creator test really. The object is hit by particles, and the texture map gets damaged at the hit location. anim, and the texture map after getting hit by the particles. hey, I know it's been a log time since this post, but any chance sharing the hip file or elaborating more how it's been put together? trying to do basically the same thing now. Any help/elaboration would be greatly appreciated. thanks, D. Quote Link to comment Share on other sites More sharing options...
Kardonn Posted December 12, 2015 Share Posted December 12, 2015 My guess would be some kind of texture bombing setup where you use point clouds to sample little UV patches onto the collision geo. You then use those patches to lay down little bullet hole RGBA textures, and then composite those into the main shader using their alpha channel. Quote Link to comment Share on other sites More sharing options...
davpe Posted December 12, 2015 Share Posted December 12, 2015 My guess would be some kind of texture bombing setup where you use point clouds to sample little UV patches onto the collision geo. You then use those patches to lay down little bullet hole RGBA textures, and then composite those into the main shader using their alpha channel. well, that is something I could figure out too the question is more about how to get that working. with some help, I was able to put a texture onto a point. good start. what I need to figure out is how to get a proper orientation matrix for the projection so the texture is not stretching when you are projecting onto curved geometry. turned out to be harder than I tought and we couldn't figure out the proper math for this yet. it is kind of working but not really. another thing that might be hard is doing that for any number of points. it obviously will be a loop inside of a shop network. that is something I have not too much experience with and found it rather difficult so far. Quote Link to comment Share on other sites More sharing options...
OskarSwierad Posted February 2, 2016 Share Posted February 2, 2016 (edited) This time something that might even be useful, a tonemapping COP. I've recently worked on game tonemapping, and thought why not implement some of the operators in Houdini. This time written in VEX. Operators I implemented are from Reinhard, Insomniac Games and John Hable. Some of the parameters can be a bit opaque, so I implemented a simple preview of the curve overlaid on the image. A preview video. I guess I should do this in Nuke too.. Looks really nice to use, especially with this curve. I have a problem, though, running the file on Houdini 15.0.313. Your node returns that error: Non-float value for 'previewScale' Unknown parameter: '2' Edited February 2, 2016 by OskarSwierad Quote Link to comment Share on other sites More sharing options...
fsimerey Posted February 2, 2016 Share Posted February 2, 2016 (edited) Looks really nice to use, especially with this curve. I have a problem, though, running the file on Houdini 15.0.313. Your node returns that error: Non-float value for 'previewScale' Unknown parameter: '2' Here attached a modified version working in H15. ee_tonemap.otl Edited February 2, 2016 by fsimerey 2 Quote Link to comment Share on other sites More sharing options...
j00ey Posted February 3, 2016 Share Posted February 3, 2016 Hi Francois. I was trying to use Eetu's tonemapper this morning too and he pointed me back here to get your amended version. For the sake of better understanding VEX, would you mind telling me what was causing the error? Thanks for posting the update too... Quote Link to comment Share on other sites More sharing options...
fsimerey Posted February 4, 2016 Share Posted February 4, 2016 Hi Francois. I was trying to use Eetu's tonemapper this morning too and he pointed me back here to get your amended version. For the sake of better understanding VEX, would you mind telling me what was causing the error? Thanks for posting the update too... Hi Tim, in fact my patch is ugly. The Parameter 'Preview Extents' (previewScale) was declared as a UV (vector2). And there seems to be a bug here. The White FS Point was declaring his value : Unknown parameter: '2' and not his name. In pragma, i changed UV to UVW(vector3) and the default parameters in cop2 tonemap() function with 3 parameters : vector previewScale = {2.0,2.0,0.0}; Now all is fine except the preview Extents have 3 parameters, the last one is useless. You can rename "White FS Point", to "White Point" at the line 24, its original label. Quote Link to comment Share on other sites More sharing options...
j00ey Posted February 4, 2016 Share Posted February 4, 2016 Thanks for the info Francois, much appreciated. I will sit down and have a look through the code and make sure I understand properly... Quote Link to comment Share on other sites More sharing options...
eetu Posted October 18, 2016 Author Share Posted October 18, 2016 (edited) It's been a while. I tried to get some pretty and detailed fractals into Houdini from several fractal programs, either as a mesh or a stack of 2d slices, but I didn't get anything clean enough. But Entagma to the rescue! Here's some Mandelbulb goodness; pretty much just the Entagma setup, but with some animated parameters, rendered as fog, and with a very simple orbit trap from iq to get some colors going. ee_mandelbrot_13.hipnc ee_mand.mp4 Edited October 18, 2016 by eetu 6 Quote Link to comment Share on other sites More sharing options...
Sepu Posted October 18, 2016 Share Posted October 18, 2016 Pretty cool eetu! keep at it! Quote Link to comment Share on other sites More sharing options...
Atom Posted October 18, 2016 Share Posted October 18, 2016 (edited) Wow, that is really nice. I highly recommend downloading and watching the mand.mp4 video. So is that brightness some kind of emission output from the orbit trap? Edited October 18, 2016 by Atom Quote Link to comment Share on other sites More sharing options...
eetu Posted October 18, 2016 Author Share Posted October 18, 2016 4 minutes ago, Atom said: So is that brightness some kind of emission output from the orbit trap? Nope the brightness is a tube light running through the fractal The hip is now attached, missed it at first. Quote Link to comment Share on other sites More sharing options...
eetu Posted October 18, 2016 Author Share Posted October 18, 2016 I'll just give a small shoutout to a tiny hda from inside the previous hip. This deletes everything but the largest connected piece from the input geometry. I don't know how many times I've built the same thing while cleaning meshes, so I hope it can be useful to someone else too. ee_largest_piece.hda 1 Quote Link to comment Share on other sites More sharing options...
eetu Posted February 8, 2017 Author Share Posted February 8, 2017 On 12/12/2015 at 8:14 AM, Kardonn said: My guess would be some kind of texture bombing setup where you use point clouds to sample little UV patches onto the collision geo. You then use those patches to lay down little bullet hole RGBA textures, and then composite those into the main shader using their alpha channel. On 12/13/2015 at 0:09 AM, davpe said: well, that is something I could figure out too the question is more about how to get that working. with some help, I was able to put a texture onto a point. good start. what I need to figure out is how to get a proper orientation matrix for the projection so the texture is not stretching when you are projecting onto curved geometry. turned out to be harder than I tought and we couldn't figure out the proper math for this yet. it is kind of working but not really. another thing that might be hard is doing that for any number of points. it obviously will be a loop inside of a shop network. that is something I have not too much experience with and found it rather difficult so far. I tried to find the file, but it must be too far down in the annals of history and I could not find it. Must be on some backup somewhere. I remember it was a weird setup. I got the uv coordinates of the particle hit, and copied a crumpled sphere to the spatial xy-position of the uv value. (x=u, y=v.) I had a second camera rendering the 0-1 range where these hit markers were floating, and a cop network that composited the rendered images on top of the atlas texture mapped on the original geometry. Fun Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.