-
Notifications
You must be signed in to change notification settings - Fork 5
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
Refactoring of compas_robots to COMPAS 2.0 and various updates to prepare for release #1
Conversation
… the new scene/sceneobject classes of 2.0
ah wait.. hold on the review, the build is failing horribly for some reason... |
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.
LGTM + left some comments
LICENSE
Outdated
@@ -1,6 +1,6 @@ | |||
MIT License | |||
|
|||
compas-dev | |||
Copyright (c) 2023 COMPAS Association |
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.
haha just out of curiosity, are we expected to update this every year? what does this even mean?
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.
Yes, I think we are. There are ever github actions for this: https://github.com/marketplace/actions/update-license-copyright-year-s
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'm not entirely certain about the legal implications of claiming copyright every year, I guess it's related to the expiration of copyright. It seems the correct way is to do a year range (as I did now, ie 2023-2024
, which I read as "we claim copyright on all years starting on 2023 and ending at 2024, and that needs to be updated yearly if we add changes)
|
||
|
||
class RobotModelArtist(BlenderArtist, RobotModelArtist): | ||
"""Artist for drawing robot models in Blender. | ||
class RobotModelObject(BlenderSceneObject, BaseRobotModelObject): |
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.
mmh RobotModelObject
sounds a bit too generic to me RobotModelSceneObject
too long/verbose?
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 had it like that at first, but the convention in core seems to be XxxObject
not XxxSceneObject
(eg BoxObject
, NetworkObject
, etc)
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.
LGTM!
What type of change is this?
Checklist
Put an
x
in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.CHANGELOG.md
file in theUnreleased
section under the most fitting heading (e.g.Added
,Changed
,Removed
).invoke test
).invoke lint
).