fix(UI): gates upper edge drawing issue #311
Merged
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.
Description
Issue
This pull request addresses issue #310 : Corner Triangular Edge Display Issue Of Logic Gates.
Problem
The issue arises due to the upper edges of circuit elements, particularly gates with triangular corners like OR Gate, NOR Gate, X-OR Gate, etc., being slightly distorted on the default zoom level. This distortion affects the UI negatively, causing an inconsistent appearance.
Root Cause
Upon investigating, it was found that the distortion occurs during the drawing of the gates. While drawing curves, the
Math.round()
function is correctly used to round off decimal numbers. However, when moving the canvas context (ctx),Math.round()
is not applied to the moving coordinates. As a result, when thectx.closePath()
method is called, the presence of decimal numbers, particularly .5 in both x and y coordinates, causes the upper edge distortion.Solution
To resolve this issue,
Math.round()
is applied to the values before moving the ctx. This ensures that the coordinates are always rounded to whole numbers, resulting in smooth curve creation for the gates drawing.Impact
Implementing this solution ensures consistent and distortion-free rendering of the circuit elements' upper edges, enhancing the UI experience for users.
Changes Made
Math.round()
to coordinates before moving the canvas context to ensure whole number values.Testing
Manual Testing was done in order to validate the changes.
Screenshots
Before
After (for every positions and scales)