-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] FILTER: RemoveFlaggedTriangles. #678
[WIP] FILTER: RemoveFlaggedTriangles. #678
Conversation
44aac8f
to
7e2833b
Compare
67d80d9
to
f16994f
Compare
bd91eba
to
666d6b6
Compare
666d6b6
to
b17c57d
Compare
@all-contributors please add @imikejackson for code |
We had trouble processing your request. Please try again later. |
@all-contributors please add @imikejackson for code |
We had trouble processing your request. Please try again later. |
@all-contributors please add @nyoungbq for code |
We had trouble processing your request. Please try again later. |
@all-contributors please add @nyoungbq for code |
This project's configuration file has malformed JSON: .all-contributorsrc. Error:: Unexpected string in JSON at position 269 |
https://github.com/all-contributors please add @nyoungbq for code |
@all-contributors please add @nyoungbq for code |
I've put up a pull request to add @nyoungbq! 🎉 |
@all-contributors please add @imikejackson for code |
@all-contributors please add @JDuffeyBQ for code |
I've put up a pull request to add @nyoungbq! 🎉 |
@all-contributors please add @bpenniebq for code |
I've put up a pull request to add @bpenniebq! 🎉 |
@all-contributors please add @john-stone-ics for code |
I've put up a pull request to add @john-stone-ics! 🎉 |
@all-contributors please add @VKUDRI for code |
I've put up a pull request to add @VKUDRI! 🎉 |
@all-contributors please add @yliu2019 as a contributor for research and data |
I've put up a pull request to add @yliu2019! 🎉 |
b17c57d
to
9bb5a55
Compare
…gacyUUIDMapping.hpp, and 5 more files
9bb5a55
to
b91cf7c
Compare
f1927c5
to
95265d6
Compare
Merged with #842 |
Code is stubbed out only.
Naming Conventions
Naming of variables should descriptive where needed. Loop Control Variables can use
i
if warranted. Most of these conventions are enforced through the clang-tidy and clang-format configuration files. See the filecomplex/docs/Code_Style_Guide.md
for a more in depth explanation.Filter Checklist
The help file
complex/docs/Porting_Filters.md
has documentation to help you port or write new filters. At the top is a nice checklist of items that should be noted when porting a filter.Unit Testing
The idea of unit testing is to test the filter for proper execution and error handling. How many variations on a unit test each filter needs is entirely dependent on what the filter is doing. Generally, the variations can fall into a few categories:
Code Cleanup