-
Notifications
You must be signed in to change notification settings - Fork 373
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
Update the python API docs site for the new APIs #3565
Conversation
rerun_py/docs/gen_common_index.py
Outdated
], | ||
class_list=[], | ||
func_list=[], | ||
class_list=["Points2D", "Points3D", "Boxes2D", "Boxes3D", "LineStrips2D", "LineStrips3D", "Mesh3D", "Asset3D"], |
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.
Arrow is missing
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.
Also: what is this order? O.o
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.
Ordered by increasing complexity of object. Same as how the functions were ordered.
rerun_py/docs/package/index.md
Outdated
- [rerun.log][]: APIs for logging data | ||
- [rerun.color_conversion][]: Conversion utilities related to colors | ||
- [rerun.components][]: Helpers for constructing arrow components | ||
- [rerun.archetypes][]: Common objects for logging primitives understood by the viewer, e.g. Points and Lines. |
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.
- [rerun.archetypes][]: Common objects for logging primitives understood by the viewer, e.g. Points and Lines. | |
- [rerun.archetypes][]: Common objects for logging tagged data understood by the viewer, e.g. Points and Lines. |
maybe better? I'm getting more and more uneasy around "primitives". Putting tagged
here might be too much though (also we never call the indicators 'tagged'), but maybe something like this
What
log_
prefixed APIs. #3564Replaces the logging functions with the archetypes.
Moves the deprecated function to their own section.
Also fixes the color inversion issue.
Checklist