draco
draco copied to clipboard
Draco is a library for compressing and decompressing 3D geometric meshes and point clouds. It is intended to improve the storage and transmission of 3D graphics.
The repository contains a number of references to this idea: > It is recommended to always pull your Draco JavaScript and WASM decoders from this URL. Users will benefit from...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.6 to 1.15.5. Release notes Sourced from nokogiri's releases. 1.15.5 / 2023-11-17 Dependencies [CRuby] Vendored libxml2 is updated to v2.11.6 from v2.11.5. For details please see https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.11.6...
This PR adds support to the PlyDecoder for decoding texture coordinates from the `texcoord` property of the `face` element. PLY files can support a single vertex with different texture coordinates...
# Before  # After https://github.com/google/draco/assets/2874967/6e243913-b6b2-484b-bb67-934c2c7a3b2d
C++20 deprecated implicit capturing of `this` in lambdas when capturing with `[=]`. Therefore this PR replaces these implicit captures by explicit ones. (This is backwards-compatible with earlier C++ standards that...
Implemented LoadTextBuffer, DecodeFromTextBuffer, and DecodeFromTextBufferToScene to add missing GLTF text format functionality (i.e. load from memory). This allows GLTF-format decoding without using the default file handling code, for example. This...
When building with cmake, running it inside /build folder is a quite popular way of doing it. Ignore this /build folder from git is quite convenient when running cmake in...
In some Linux distribution, like Fedora, openSUSE or Gentoo, shared libraries are more prefered. Static libraries are suggested to be avoided to be included in packaging. It may be better...
It may be more proper to install cmake config files into `${CMAKE_INSTALL_LIBDIR}/cmake/draco` to follow the current pratice, which is adopted by CMake documentation example and many c++ libraries. Ref: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8111...
I needed a tvos build to go with ios, but the draco project doesn't seem to have one, so I've added one! I'm a CMAKE newbie, so if anything is...