Kenny Weiss

Results 93 issues of Kenny Weiss

Axom does not currently track code coverage in its CI plan. We should set up code coverage with a service like [codecov](https://codecov.io/), [coverity](https://scan.coverity.com) or [coveralls](https://coveralls.io/). #### Details: We can base...

CI
Build system
Software process
maintenance
Reviewed

There are a few inconsistencies in our 2D and 3D treatment of orientation. * Our 2D orientation primitive treats clockwise orientation as positive, while our 3D orientation primitive treats counter-clockwise...

Primal

Quest provides a function to "weld" vertices in a triangle mesh that are closer than a user- provided distance threshold. This function identifies sets of vertices at the same location,...

Quest
Spin
User Request
Reviewed
low priority

The vertex welding code converts a "soup of triangles", e.g. from an STL mesh, into a mesh whose triangles share vertices. The code currently depends on std library functionality, e.g....

enhancement
Quest
Spin
GPU
Reviewed
low priority

The `InOutOctree` has a max depth of 32 levels due to its dependence on `axom::IndexType` for the (integer) coordinates of each octree block. @agcapps reported a problem that a user...

enhancement
Quest
Spin
Reviewed

@mclarsen suggested adding a relative tolerance to the triangle intersection app based on the bounding box of the input mesh (see #265) This could be useful when dealing with meshes...

enhancement
Quest
Primal
User Request
Reviewed

We should add [caliper](https://github.com/llnl/caliper) as an optional third-party dependency to Axom. In addition to our internal usage (e.g. in axom's examples), this would allow user codes that build with caliper...

App Integration
TPL
Reviewed

See: https://github.com/LLNL/axom/issues/227

In the `references` example, there is the following case: ```cpp - decl: double* getArray() +dimension(getSize()) ``` I ran into a problem wrapping the function if it is `const`, e.g. ```cpp...

It would be helpful to potential users if shroud had two simple standalone example projects (e.g. with only one or two functions): * A cmake (or blt) C++ project that...