Jonathan Young

Results 6 comments of Jonathan Young

Add `include/compat/msvc` to your include path, like [this](https://github.com/bkaradzic/bx/blob/master/scripts/toolchain.lua#L554).

High-poly models with a lot of curved geometry like that tend to give poor results. Try the same teapot model with fewer segments.

There's a bunch of things I'd like to add, like: * a command line tool with model export * model export in the viewer, plus better diagnostic tools - inspecting...

Not yet. A C API and DLL export are on my TODO list.

The only change xatlas makes to geometry is adding duplicate vertices on chart seams - since those vertices now have different texture coordinates. [This should always be true.](https://github.com/jpcy/xatlas/blob/master/extra/test.cpp#L152) Those parameterization...

Any invalid geometry (e.g. zero-length edges) can't be atlased. `Vertex::atlasIndex` will be -1 and so `Vertex::uv` will be (0,0). I'm guessing that is what is happening here. Do you see...