frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Computers Are Just a Tool

1•DesaiAshu•1m ago•0 comments

Neovim Colorscheme: Luna.nvim

https://github.com/WTFox/luna.nvim
1•wtfox•1m ago•0 comments

Show HN: Ask your coding agent to subtitle, translate, and clip video (FFmpeg)

https://github.com/perso-ai/perso-dubbing-plugin
1•remyships•7m ago•0 comments

3 in 4 European businesses fear their US tech provider could cut them off

https://proton.me/business/blog/business-continuity-survey
3•billybuckwheat•8m ago•0 comments

Neutrinos from Deep Inside Earth Provide a New Picture of the Mantle

https://www.quantamagazine.org/neutrinos-from-deep-inside-earth-provide-a-new-picture-of-the-mant...
1•pseudolus•11m ago•0 comments

Multi-Agent Coach Adversarial Eval. Passed Designed Traps and Basics Failed

https://i.brandanthonymcdonald.com/multi-agent-eval-teardown
1•aweful•11m ago•0 comments

Shimg: AppImage Shell Script

https://github.com/mgord9518/shappimage
1•jcbhmr•17m ago•0 comments

Stream PS Plus Games to Steam Deck

https://www.eurogamer.net/steam-deck-ps5-streaming-app-asobi
1•slowhadoken•18m ago•0 comments

Why the Kaggle API Gave Me the Wrong Private Leaderboard

https://medium.com/@alanscottencinas/why-the-kaggle-api-gave-me-the-wrong-private-leaderboard-d2e...
1•encinas88•20m ago•0 comments

A Drone 'Hellscape' Might Stop a Chinese Invasion of Taiwan

https://www.nytimes.com/2026/08/09/world/asia/taiwan-drone-china-invasion.html
1•mikhael•21m ago•0 comments

A Generation on Antidepressants Searches for the Exit

https://www.nytimes.com/2026/08/07/opinion/antidepressants-ssris-side-effects-drugs-maha.html
1•cwwc•23m ago•0 comments

Tearable UI

https://pushmatrix.github.io/tearable/
2•yen223•29m ago•1 comments

Avoid "Eatslop"

https://soups.vercel.app/articles/avoid-eatslop.html
1•convolutedsoup•31m ago•0 comments

Quantum advantage for simulating Floquet dynamics

https://arxiv.org/abs/2607.24937
1•nsoonhui•42m ago•0 comments

Show HN: CtxRay – see and lock what Codex loads before a task

https://github.com/FramY2/ctxray
1•framy2•43m ago•0 comments

China became the great oil power

https://www.economist.com/finance-and-economics/2026/08/09/how-china-became-the-worlds-great-oil-...
2•toomuchtodo•51m ago•1 comments

MatrAIx: Simulating the World with 8.3B Persona Agents

https://arxiv.org/abs/2608.04205
1•birriel•56m ago•1 comments

Show HN: SynapsCLI – lightweight agent runtime in Rust, control an agent swarm

https://github.com/HaseebKhalid1507/SynapsCLI
2•0x04am•57m ago•0 comments

LLMs Get Lost in Evolving User Intent

https://arxiv.org/abs/2607.20734
2•Anon84•1h ago•0 comments

How We Pushed CDC into Postgres

https://www.snowflake.com/en/blog/engineering/postgres-to-snowflake-replication-mirroring/
19•craigkerstiens•1h ago•0 comments

Blender MCP maintainer GitHub account hacked

https://twitter.com/sidahuj/status/2086445625147793503
5•babuskov•1h ago•0 comments

Profile-Guided Optimization in Go

https://lemire.me/blog/2026/08/09/profile-guided-optimization-in-go/
1•prattmic•1h ago•0 comments

Spy cameras on Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china/
2•el_duderino•1h ago•1 comments

EGA and Me: A Complicated Relationship

https://reanthsoft.com/blog_260806_ega_and_me.html
1•doener•1h ago•0 comments

Simple, multi-key sorting algorithm for 2D+ points gridification

https://github.com/ArmanddeCacqueray/Cartesian-Grid-Sort
1•adec314•1h ago•1 comments

Forbidden fruit: Buick Electra gets 435 mile range and 376 HP for $25K in China

https://electrek.co/2026/08/06/forbidden-fruit-buick-electra-gets-435-mile-ev-range-and-25000-pri...
7•MilnerRoute•1h ago•2 comments

Pentagon presses defense firms to build weapons as Iran war depletes stocks

https://www.washingtonpost.com/technology/2026/08/08/pentagon-presses-defense-firms-build-weapons...
2•Teever•1h ago•0 comments

California Cyberattack on 911 Systems

https://www.latimes.com/california/story/2026-08-09/cyberattack-forces-emergency-declaration-in-s...
2•vsgherzi•1h ago•0 comments

Show HN: Acquired Podcast Idea Dinner Returns

https://acquirers.vercel.app/
1•Taikhoom2010•1h ago•0 comments

Japanese court overturns Red RAW video patent

https://www.dpreview.com/news/panasonic-did-what-apple-sony-and-nikon-couldnt-overturn-a-red-raw-...
24•anigbrowl•1h ago•3 comments
Open in hackernews

Implicit UVs: Real-time semi-global parameterization of implicit surfaces [pdf]

https://baptiste-genest.github.io/papers/implicit_uvs.pdf
50•ibobev•1y ago

Comments

whizzter•1y ago
Interesting paper for someone fiddling with implicit surfaces, but it's gonna take a little while to digest it. Also there's no examples of resulting UV maps used in this (while on-model painting is simplified, afaik classically artists still preferred to get clearly delineated maps to modify in regular painting software even if stuff like Substance painter seems to have shifted that).

Implicit surface modelling tools are still evolving quickly, and one point that seems overlooked is how this would tie with authoring tools (since this is about a fairly raw numeric algorithm solution).

Post-modelling it should hold up, but would the maps retain similarity (or enable transferability) if the implicit model structure changes?

Imagine 2 disjoint spheres in space, the user drags them together, would this algorithm want to merge the UV mapping of them if they are smoothly joined? (no sharp creases).

baptiste-genest•1y ago
Hi, I'm the first author of the article. Thank you very much for your interest in the method!

For the 2 spheres, it's as you wish ! It depends on where you place the uv system in the CSG tree, if it is above a single sphere then it will remain on it, if it's above the union, the field should extent on both.

The main interest of the method is the fact that the output remains implicit so one can easily plug it in a CSG pipeline.

whizzter•1y ago
Right, so in the case of the UV connecting to the 2 sphere's in the CSG if one uses a smoothunion function, would the UV islands join "from each direction" in a predictable fashion as the spheres overlap more and more?
baptiste-genest•1y ago
If I understood what you mean, yes!

This example can be seen in the fast-forward: https://youtu.be/dK5JPHylzOg?si=zDHwaOL_xtx-_TJk

jplusequalt•1y ago
What a great paper. This paper is an example of why I find computer graphics to be the most interesting subset of computer science.
baptiste-genest•1y ago
Hi, I'm the first author of the paper. Thank you so much for your comment, it means the world to me!
kaoD•1y ago
Related question: I'm coding a demo (as in "demoscene") and want to displace a plane SDF (think e.g. a heightmap) for raymarching.

This produces some visible discontinuities in the plane at larger slopes. My surface is still at f(x,y,z) = 0 but the rest of the field is completely messed up. From the little maths I know, that is no longer an SDF because among other issues, it no longer satisfies the Eikonal equation mentioned in the article.

Is there any way to fix this or am I SOL?

bhouston•1y ago
You need to take the minimum of the two SDF fields in the surrounding region (up to the global context if you need to) if you want it to maintain an SDF. The minimum of two SDFs is always a new SDF.

My suspicion is that the new plane isn't an SDF anymore, that is why you are getting artifacts or your ray marcher has problems with large scope angles, or something.

akomtu•1y ago
sdf(p + sin(p)*0.01)
GistNoesis•1y ago
See "Deformations and distortions" paragraph in https://iquilezles.org/articles/distfunctions/ where it suggests playing with the ray-marching step size.
Remnant44•1y ago
Great timing on this paper. I actually just started tackling a problem that is essentially exactly what is under discussion here (creating a coherent UV set for implicit geometry), so I'm very looking forward to reading it in depth.

At a first glace through, it seems to be written at a good blend between concept and implementation followthrough, something that notoriously is not always there for CG papers :) And it's also refreshing to read something that is not neuro-AI-generation of this or that for a change!