-
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
Robot Object for compas_viewer
#2
Comments
Good idea, the robot model objects to support class AbstractRobotModelObject(object):
def transform(self, geometry, transformation):
raise NotImplementedError
def create_geometry(self, geometry, name=None, color=None):
raise NotImplementedError so, we just need to have a method to create native geometry in the target visualization tool, and one to natively transform geometry. The In the end, due to the methods inherited from the base class, the robot model scene objects end up having the following relevant methods (related to your template): |
@ZacZhangzhuo Is this issue already been resolved? It seems the PR is merged |
compas_viewer
is ready to connectcompas_robots
for visualizing the robot.Since I saw the main updates are in the
refactor_2.0
branch and not merged intomain
, I thought it would be great to create an issue to discuss first before it is prepared.The template would be like;
Would also be great if you could point out where is the entry that I should connect :)
The text was updated successfully, but these errors were encountered: