feat: add DDA line drawing algorithm#6616
Merged
DenizAltunkapan merged 4 commits intoTheAlgorithms:masterfrom Oct 18, 2025
Merged
feat: add DDA line drawing algorithm#6616DenizAltunkapan merged 4 commits intoTheAlgorithms:masterfrom
DenizAltunkapan merged 4 commits intoTheAlgorithms:masterfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6616 +/- ##
=========================================
Coverage 77.82% 77.83%
- Complexity 6392 6393 +1
=========================================
Files 732 733 +1
Lines 21320 21333 +13
Branches 4182 4183 +1
=========================================
+ Hits 16592 16604 +12
Misses 4059 4059
- Partials 669 670 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
Hi @alxkm , this PR seems to have gone unnoticed. I would appreciate it if you could review it when you have time. Thanks. 😄 |
DenizAltunkapan
approved these changes
Oct 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
clang-format -i --style=file path/to/your/file.javaThis PR adds implementation of the Digital Differential Analyzer line drawing algorithm, along with unit tests.
Changes include:
DDALine.java — implements the algorithm.
DDALineTest.java — JUnit tests with 100% coverage for the implementation.