Open
Conversation
…mplemented later. no need to have a placehold function commented out in its place on the main branch.
…nly had 1 unit test provided. try adding more unit tests to test various functions of your application. I've provided an example of a unit test that tests if your complementarycolor function is working.
discospiff
reviewed
Apr 3, 2023
Comment on lines
+38
to
+40
| /* | ||
| chained the setters so that it dosnt just say "drawtool." over and over again. | ||
| */ |
There was a problem hiding this comment.
Big no-no: do not put conversation in source code comments. That's clutter. Put the conversation here, in the Files Changed section of the pull request, where you can have a dialog with other developers.
|
The scoped function apply {} is a good idea, though that can be implemented manually, and without the source code comment. Beyond that, not a whole lot of tech debt reduction in this branch, so no need to merge it. |
discospiff
reviewed
Apr 3, 2023
Comment on lines
-19
to
-20
|
|
||
|
|
There was a problem hiding this comment.
Formatting can, and should, be performed automatically, and consistently, by the IDE. Formatting code is really programmer's preference anyway, and doesn't necessarily decrease technical debt.
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.
RoomRemix2 is a room design program that allows users to create a digital rendition of a room and fill it with furniture. It will connect with google marketplaces for various pieces of furniture's to help users create their ideal room arrangement.
Was the program available in UC Github on time?
Is the program documented/commented well enough for you to understand?
Does the program compile?
Rational:
Most changes I made are an effort to make the code easier to read, and less repeatable. for example the chaining change I made, functionally; the function works the same, but its more streamlined. I removed saveFloorplan since it had no functionality and therefor shouldn't be in the master branch. The version of master I cloned only had 1 unit test, more should be implemented as your project grows to help test various parts of your code.
My Commits:
lh1207/LocoQuest@7e50361
lh1207/LocoQuest@24960f9
lh1207/LocoQuest@718867e
lh1207/LocoQuest@d7afe2c
lh1207/LocoQuest@4458491
Concepts I learned:
References: