frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Koide Formula

https://en.wikipedia.org/wiki/Koide_formula
1•tcp_handshaker•1m ago•0 comments

In a first, Blue Origin uses a recycled rocket to send a satellite into space

https://www.geekwire.com/2026/blue-origin-uses-a-recycled-rocket-to-launch-satellite-for-ast-spac...
1•SilverElfin•2m ago•1 comments

Making Illegal State Unrepresentable

https://blog.frankel.ch/illegal-state-unrepresentable/
1•Tomte•3m ago•0 comments

We Need a New Product Hunt

https://molodtsov.me/2026/04/we-need-a-new-product-hunt/
1•twapi•3m ago•0 comments

You're Invisible on the Internet. Here's the Why

https://medium.com/@simbamudonzvo/youre-invisible-on-the-internet-here-s-the-why-fbe086d99d62
1•TechOnionKing•3m ago•0 comments

The Best Photos of the Artemis II Mission

https://nautil.us/the-best-photos-of-the-artemis-ii-mission-1279789
2•Bender•5m ago•0 comments

Embedded Rust discovery guide for the official Rust ESP32-C3 board

https://github.com/melastmohican/esp-rust-board-discovery
1•melastmohican•6m ago•0 comments

Passmark: Open-source Playwright library for AI regression testing

https://passmark.dev
3•hliyan•7m ago•1 comments

Sandboxed AI agent orchestration platform

https://github.com/superhq-ai/superhq
2•purusa0x6c•7m ago•0 comments

The Secret Life of Circuits

https://lcamtuf.coredump.cx/electronics/
1•signa11•9m ago•0 comments

Turtle WoW classic server announces shutdown after Blizzard wins injunction

https://www.pcgamer.com/games/world-of-warcraft/turtle-wow-classic-server-announces-shutdown-afte...
3•Brajeshwar•9m ago•0 comments

Claude Brain

https://github.com/memvid/claude-brain
1•DeathArrow•10m ago•0 comments

Per-Screen Virtual Desktops Is Finally on KDE Plasma

https://www.neowin.net/news/after-21-years-of-waiting-kde-plasma-is-finally-adding-this-long-requ...
1•bundie•12m ago•0 comments

Against an Endless Present

https://thedispatch.com/article/short-video-memory-culture-books/
1•XzetaU8•12m ago•0 comments

What Category Is Prune?

https://contemplativegames.com/prune
1•justinneuman•13m ago•0 comments

Have your agent post Markdown/HTML/JSX to internet

https://www.saved.md/
1•anboias•16m ago•0 comments

Show HN: Find jobs and know your fit before you apply

https://karriero.net/
1•alenn_m•16m ago•1 comments

Who Voted You King?

https://chrisabraham.substack.com/p/who-voted-you-king
1•chrisabraham•17m ago•0 comments

Ηuman collective intelligence through space, body and material symbols

https://royalsocietypublishing.org/rstb/article/381/1948/20240448/481362/Scaffolding-minds-human-...
1•XzetaU8•17m ago•0 comments

Moonspans

https://moonpans.com/
1•tcp_handshaker•17m ago•0 comments

The first compliance-native Git platform

https://www.guardgit.com/
1•quietproof•18m ago•0 comments

Show HN: Ratio Royale – A playable simulation of the Dead Internet theory

https://vibeaxis.com/ratio-royale/
1•XQorp•19m ago•0 comments

Tesla owner uses emergency solar to trickle charge after running out of battery

https://electrek.co/2026/04/18/tesla-model-x-solar-charging-atacama-desert-chile-pan-american-hig...
2•Bender•23m ago•0 comments

I've fired one of Americas most powerful lasers heres what a shot day looks like

https://theconversation.com/ive-fired-one-of-americas-most-powerful-lasers-heres-what-a-shot-day-...
2•Bender•25m ago•0 comments

Steal My Password (Technique)

https://mastodon.social/@DazRunner/116431049586713261
2•keiste_sales•27m ago•0 comments

When I Quit My PhD

https://www.lowimpactfruit.com/p/when-i-quit-my-phd
2•mnky9800n•27m ago•0 comments

What we once had (at the height of the XMPP era of the Internet) (2023)

https://www.kirsle.net/what-we-once-had-at-the-height-of-the-xmpp-era-of-the-internet
2•lolpython•29m ago•0 comments

One codebase → every store, registry, CDN, and channel. Ads on every network

https://github.com/profullstack/sh1pt
2•buffer_overlord•30m ago•0 comments

Scoring 500 Show HN pages for AI design slop

https://www.adriankrebs.ch/blog/design-slop/
2•hubraumhugo•30m ago•0 comments

Ask HN: What makes a good Product Manager

3•chairhairair•31m ago•1 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•11mo ago

Comments

whizzter•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Hi, I'm the first author of the paper. Thank you so much for your comment, it means the world to me!
kaoD•11mo 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•11mo 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•11mo ago
sdf(p + sin(p)*0.01)
GistNoesis•11mo ago
See "Deformations and distortions" paragraph in https://iquilezles.org/articles/distfunctions/ where it suggests playing with the ray-marching step size.
Remnant44•11mo 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!