-
-
Notifications
You must be signed in to change notification settings - Fork 55
Primitives in separate folder #84
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
Conversation
Hi @SimonDanisch could you please take a look at this? Thanks. |
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.
Appreciate the effort to structure a codebase! Some remarks:
- Fix the file ending (EOF) with a blank line everywhere (didn't comment on all cases).
- The rest are just thoughts, maybe @SimonDanisch can decide on those.
src/GeometryBasics.jl
Outdated
@@ -8,11 +8,11 @@ module GeometryBasics | |||
include("fixed_arrays.jl") | |||
include("offsetintegers.jl") | |||
include("basic_types.jl") | |||
include("primitives.jl") | |||
include("interfaces.jl") | |||
include("metadata.jl") | |||
include("viewtypes.jl") | |||
include("geometry_primitives.jl") |
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.
Should this file also be moved, or be renamed?
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.
I agree. Appreciate if anyone can suggest a better name. By reading the contents I couldn't figure out a good name.
I've incorporated @evetion suggestions. This PR is ready for review. |
Thank you :) |
This pull request is a first attempt to organize the codebase before contributing actual functionality. I just moved code related to primitives to a single place. Appreciate if you can review.