-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New node: QR Code #3565
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
base: master
Are you sure you want to change the base?
New node: QR Code #3565
Conversation
|
!build |
|
|
(have renamed Merge to Merge Adjacent Tiles ) Looks good now ? @timon-schelling |
|
That's just merging rows, not every adjacent tile. Can you fix that? |
|
Could we just make the shape be boxes and then use a boolean union operation to merge them? Or we could just use a manual flood fill to build contiguous regions |
|
I tried using flood fill approach ( ig first one will be heavier): cursorful-video-1767593925927.mp4 |
|
!build |
|
|
The node is currently nondeterministic. It produces different data every evaluation. |
Keavon
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments. The most critical one is making the node deterministic.
|
@Sahil-Gupta584 Due to the use of a Hash Set which uses randomization under the hood, the flood fill algorithm will start from a different point each time, leading to visually identical but different output in each evaluation. This should be relatively easy to fix since in some cases, the |
124235a to
a42cad8
Compare
|
sure, thanks for the suggestions, looks interesting for me also! |
|
So i tried making code more deterministic as well added few comments for understanding working. |
|
!build |
|





Closes #3468
Do you have any suggestion ?
Current Implementation:
cursorful-video-1767354987148.mp4