Yup. It's wayland. again! it's always fucking wayland! I hate you so much wayland. The tablet works fine with Blender if I restart Gnome in Xorg mode. This operating system is such a fucking joke my hands are shaking with anger right now.
If you're going to wander into my mentions to tell me that it's good actually preferred even that the wayland team broke an entire ecosystem of applications that was working just fine for the last 20 years, do me a favor and just go block yourself instead? I'm not in the mood.
when linux gives you wayland you burn linux's house down
I made some progress tonight on learning #GeometryNodes! I made a little relief with an elevation map of Kauaʻi and a blue noise texture to hide the banding.
I added trees
it's amazing how much blender has changed since i first spent several hours making a shitty gingerbread man in it back in '02
I remarked to someone that the cost of [open source thing] is "you get what you pay for", and was thinking about how that always sounds snarky and mean but it's totally true and it works. I subscribed to "Blender Cloud" years ago for the tutorials and left the ten bucks a month faucet on for all this time and look what all it can do now :O
watch out tech artists i know houdini now #blueprintsfromhell
hornswoggled!
experimenting with using splines to draw roads onto height maps
I figured out how to make non-uniform grids with geometry nodes 💀
I like this Zachtronics game
This looks better than expected with an arbitrary height map applied. I don't strictly speaking need to fix the tearing for what I'm doing, but I might try and patch it up later so my in progress screenshots look nicer >_>

my feature wishlist for #blender #geometrynodes

- selective subdivision (either a face selection field input or making the level input a field)

- collapse edges / faces / vertices operator

- python nodes

played around a bit more with my "drawing roads on terrain" prototype today. this is starting to get a little closer to what I want
I revisited the non-uniform grid geometry nodes thing tonight and figured out a terrible hack to stitch the edges. I think I'm starting to get the hang of this.
Side note, I like how all my node graphs end up looking vaguely like deep sea creatures.
I came up with a cool way of generating terrain from a few splines tonight. Might run with this. Just draw some feature lines and boom there's a mountain or a ravine or something.
Here's another one. This took like no time at all to draw out. I feel like I'm on to something.
I've decided there's one obvious correct name for this technique and it is Spline Distance Field :3
I made a little visualizer material for my Spline Distance Field thingy.
🌲
What is really great about this system is you can just mash stuff together and it mostly just works. Here's the same hill as before, but twice. I'm planning on using this to construct coherent landscapes out of irregular tiles and no grid :3

I think I figured out a way to do inexpensive higher order curves with this, which would mean the transitions between curves (and between between curves) can be interpolated better. This is the main barrier preventing technique being more generally useful imo.

I'll probably take a crack at implementing it in the next few days if I have any energy left between work and random appointments.

I... may have upended the production schedule of a game friends are working on by sharing this tool with the artist 😶

improvement idea didn't quite work out :/

The idea was that since I can determine which curve is closest to a given point on the terrain grid, I can use edge data to find the spots where abrupt changes might occur, and then can do a nearest crossing test relatively easily. This does accomplish what it is supposed to, but other artifacts show up around the perimeter of the map so it's not really worth it.

Might have to settle for blurring the height around those edge crossings instead.
still, the technique is pretty powerful even without the higher order curves, and I'm sure someone smart on here might spot a better way to blend between spline patches 🤷‍♀️ I'll probably write something up on my blog in the next few days time permitting.
I'm really quite amazed at how fast the geometry nodes blur intrinsic is, but I'm starting to think the perf measurement for it is just broken.
🤔
happy accident: transforming arbitrary meshes with the spline field
Experimenting with visualizing the extruded spline tangents cropped by the spline distance field volumes. This is meant to demonstrate what is being interpolated to produce the height field, though this doesn't show the part where splines are projected past their endpoints.
Today an artist friend used this technique to completely redo all of the terrain in the vertical slice level for the game she's working on. Judging by timestamps, it took her about an hour to complete after a false start. I'm not posting the screenshots because they're confidential but holy smokes it is awesome :O
what really gives me life today is she wants to push it even further <3
I've been pondering how to adapt this technique into a more general purpose modeling technique, and heh it's funny how problems are trivial when they're discrete, bounded, and 2D, but get a bit harder when they're continuous, unbounded, and 3D
oh great, the piecewise solution is a 3D voronoi diagram. of course it is 😔
@aeva I've said it before and I'll say it again: somehow, inexplicably, everything can be solved with Voronoi.
@lunarood @aeva there is absolutely a deeper truth. Voronoi is related to blue noise and so both hyperuniformity and optimal transport. also a cousin to low discrepancy sequences, so "n queens" and sudoku and latin hypercubes and things like that, as well as numerical convergence speeds 🙂.
@lunarood @aeva oh but also more mundane: if you wanted to make an acceleration structure to find the closest registered point (or object/shape) to a query point.... you'd end up at voronoi. It's a common operation, seems like voronoi should be a basic computer science data structure :P

@demofox @aeva Absolutely. But I've often been very surprised by where it pops up. I've more than once had problems that were (or appeared to be) completely unrelated to space division or spatial distributions, where Voronoi ended up being the solution.

Traversing a Voronoi edge graph also has many uses, which are less obvious than your typical Voronoi application. You could frame this as a walk over a Delaunay triangulation, but sometimes it helps to reason about it in terms of Voronoi.

@lunarood @aeva id love to hear more!