-
Notifications
You must be signed in to change notification settings - Fork 11
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
141 add arrow marker type #142
141 add arrow marker type #142
Conversation
8705b59
to
fc61e64
Compare
fc61e64
to
95f15bf
Compare
opencsp/common/lib/render/View3d.py
Outdated
def draw_xyz(self, xyz, style: rcps.RenderControlPointSeq = None, label: str = None): # An xyz is [x,y,z] | ||
def draw_xyz( | ||
self, xyz: tuple[list, list], style: rcps.RenderControlPointSeq = None, label: str = None | ||
): # An xyz is [x,y,z] | ||
"""Plots a single point, I think (BGB).""" |
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.
Please add full doc string here.
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 kinda went overboard, but at least now this method has a full docstring!
f3e689e
cls.dir_in = ft.join(path, 'data/input', name.split('test_')[-1]) | ||
cls.dir_out = ft.join(path, 'data/output', name.split('test_')[-1]) | ||
|
||
ret = super().setUpClass() |
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.
Thanks for cleaning this up too
No description provided.