Maximilian Tarpini

@maxtarpini.bsky.social

It's all about W÷m² and W÷Kg 🌈🚴‍♂️ www.rombo.tools

All currently available SSS models ignore internal boundary condition (aka TIR) .. but trapping rays past the critical angle (keeping'em bouncing) forces longer path lengths .. for richer, more saturated, physically accurate translucency. Same color and mfp. With / without TIR

BildBild

Full Order-N Similarity Theory (Zhao et al. 2014) for SSS. Single-lobe HG at high anisotropy makes light "tunnel" through the material in a tight directional beam rather than diffusing broadly. With ONST we've better looking results, smoother and way faster .. 2:54 vs 4:05 (shark).

BildBildBild

Ending some Pattern dev with Truchet patterns. Worth noting that while the original Truchet tiles (1704) used diagonally split squares, the curved arc-based Truchet patterns commonly used in modern graphics were popularized by Cyril Stanley Smith in 1987 !

BildBildBildBild

Never ever use hashes you find around .. and for this matter .. don't roll your own hash functions either .. refer to your quality dealer eventually :) or to SplitMix64-based hashes. Here with some commenting about.

BildBild

Orbit traps are a coloring strategy for fractals: follow an orbit, watch how it moves through space and record how close it gets to some geometric “trap”. That “closeness” drives your colors. These are based on : "Procedural Generation of Artistic Patterns Using a Modified Orbit Trap Method".

BildBild

Patterns from : ' Mathematical Modeling of a Class of Symmetrical Islamic Design'. Proper coloring is almost impossible because stars in a periodic tiling where cell boundaries wrap destroy the pattern topology .. ie. a ray can hit edges that are topologically behind the starting point ! 🤔

Bild

Implemented : Symmetrization of Quasi-Regular Patterns with Periodic Tilting of Regular Polygons (using UV cells). Super nice, infinite pattern variations with just few parameters. Added colorization that with threshold parameters adds other ways to create more patterns.

BildBildBildBild

Working with floats in C/C++? Fncs like fmod(), fmin(), fabs() etc. actually use doubles internally (floats get promoted on call). For better performance with float data, use the 'f' suffix versions: sinf(), sqrtf() are obvious, fmodf(), fminf() less so. Easy to overlook, but matters in tight loops!

Defocus 2.5D blur with circle of confusion computation from Z-depth based on 'A lens and aperture camera model for synthetic image generation - ACM Siggraph 1981' is super nice and works a treat in many situations.

BildBildBild

Btw, we locate sun in the sky by checking ray dir alignment with sun center (cosTheta>sunCosTheta) .. so we don't generally consider sun size. However, sin() of sun angular diameter is sun radius (!) and we can use that at horizon to account for sun having a real diameter ie. for twilight zone etc.

Bild

Ever noticed that most phase fncs use costheta and not theta ? After all we want an angular quantity not a proj of some sort (taking the cos of the angle) while is not even a math convenience.. it is that costheta provides a more uniform sampling for calcs of ang distributions. Here the proof :

BildBildBild

The localPoint in the previous code is also the hit normal so I had just to add bump mapping, a dot product (moonnormal,sundir) for diffuse wrapped in a ^0.75 to compress the shadow terminator and eventually a bit of ambient (+albedo*0.075).. and voilà a basic moon with tidal locking.

Random walks mechanics : a nice improvement to sample SSS with guided (zero-variance) walks is to use Meng closest point and normal heuristics and then D'Eon forward/backward probability to stochastically account for the boundary choice.

BildBildBild

Non-Exponential Random Walks. For SSS they are great to sim plastics and other polymers, the discoloration and drying of certain natural materials or because of their long-range correlations thin-walled mats like the Mario on the left (same MFP of the 'solid' one on the right).

BildBildBild

Inverting IOR interfaces while random walking back toward the surface, pretending there's been a boundary between the isotropic opaque core and the transp aniso stuff. Great for some resins, crusts etc.

BildBild