happly icon indicating copy to clipboard operation
happly copied to clipboard

A C++ header-only parser for the PLY file format. Parse .ply happily!

Results 19 happly issues
Sort by recently updated
recently updated
newest added

The current version of happly is quite slow for large files compared to an home-brewed solution I cooked up. The profiler suggest that the problem is allocating many small vectors...

enhancement

I noticed some of the template use in Happly is not ideal. Go back and look closer: - `CanonicalName` looks like it has a bug, perhaps not caught because no...

bug
enhancement

Right now the main `PlyData` class cannot be implicitly copied. This is probably the right behavior; doing so is likely a mistake. However, we can improve the situation in two...

enhancement
good first issue

I needed to compile Happly for a wasm project that wants to be compiled without RTTI, so this PR allows supporting this configuration. It comes with a custom RTTI implementation...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. I added a fuzzer that targets the...

-Explicitly delete the copy constructor, to make it clear that the behavior is intentional -Provide a .copy() function for the few situations where one really does want to explicitly copy

Hi, this PR cleans up a little bit the code with minor changes: * constness for variables, function arguments, and methods * avoid c-style casting but rather use static or...

When loading an ASCII PLY file via PLYData(filename), the parser fails to properly handle empty lines containing standalone \r (Carriage Return) characters. This occurs because the file is opened in...

Like: ply format ascii 1.0 comment Created in Blender version 4.2.2 LTS element vertex 9 property float x property float y property float z element edge 8 property int vertex1...