-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
94 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# NOTE: This file was autogenerated by re_types_builder; DO NOT EDIT. | ||
|
||
from __future__ import annotations | ||
|
||
from rerun2.archetypes import Points2D # noqa: F401 | ||
__all__ = ["Points2D"] | ||
|
||
from rerun2.archetypes import Points2D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# NOTE: This file was autogenerated by re_types_builder; DO NOT EDIT. | ||
|
||
# NOTE: | ||
# - we use fully qualified paths to prevent lazy circular imports | ||
# - `noqa F401` (unused import) everywhere because, while not strictly necessary, | ||
# these imports are very nice for end users. | ||
from __future__ import annotations | ||
|
||
from rerun2.archetypes.points2d import Points2D # noqa: F401 | ||
__all__ = ["Points2D"] | ||
|
||
# NOTE: we use fully qualified paths to prevent lazy circular imports. | ||
from rerun2.archetypes.points2d import Points2D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,68 @@ | ||
# NOTE: This file was autogenerated by re_types_builder; DO NOT EDIT. | ||
|
||
# NOTE: | ||
# - we use fully qualified paths to prevent lazy circular imports | ||
# - `noqa F401` (unused import) everywhere because, while not strictly necessary, | ||
# these imports are very nice for end users. | ||
from __future__ import annotations | ||
|
||
from rerun2.components.class_id import ClassId, ClassIdArray, ClassIdArrayLike, ClassIdLike, ClassIdType # noqa: F401 | ||
from rerun2.components.color import Color, ColorArray, ColorArrayLike, ColorLike, ColorType # noqa: F401 | ||
from rerun2.components.draw_order import ( # noqa: F401 | ||
DrawOrder, | ||
DrawOrderArray, | ||
DrawOrderArrayLike, | ||
DrawOrderLike, | ||
DrawOrderType, | ||
) | ||
from rerun2.components.instance_key import ( # noqa: F401 | ||
__all__ = [ | ||
"InstanceKey", | ||
"InstanceKeyLike", | ||
"InstanceKeyArray", | ||
"InstanceKeyArrayLike", | ||
"InstanceKeyType", | ||
"Color", | ||
"ColorLike", | ||
"ColorArray", | ||
"ColorArrayLike", | ||
"ColorType", | ||
"Label", | ||
"LabelLike", | ||
"LabelArray", | ||
"LabelArrayLike", | ||
"LabelType", | ||
"Point2D", | ||
"Point2DLike", | ||
"Point2DArray", | ||
"Point2DArrayLike", | ||
"Point2DType", | ||
"ClassId", | ||
"ClassIdLike", | ||
"ClassIdArray", | ||
"ClassIdArrayLike", | ||
"ClassIdType", | ||
"Radius", | ||
"RadiusLike", | ||
"RadiusArray", | ||
"RadiusArrayLike", | ||
"RadiusType", | ||
"KeypointId", | ||
"KeypointIdLike", | ||
"KeypointIdArray", | ||
"KeypointIdArrayLike", | ||
"KeypointIdType", | ||
"DrawOrder", | ||
"DrawOrderLike", | ||
"DrawOrderArray", | ||
"DrawOrderArrayLike", | ||
"DrawOrderType", | ||
] | ||
|
||
# NOTE: we use fully qualified paths to prevent lazy circular imports. | ||
from rerun2.components.class_id import ClassId, ClassIdArray, ClassIdArrayLike, ClassIdLike, ClassIdType | ||
from rerun2.components.color import Color, ColorArray, ColorArrayLike, ColorLike, ColorType | ||
from rerun2.components.draw_order import DrawOrder, DrawOrderArray, DrawOrderArrayLike, DrawOrderLike, DrawOrderType | ||
from rerun2.components.instance_key import ( | ||
InstanceKey, | ||
InstanceKeyArray, | ||
InstanceKeyArrayLike, | ||
InstanceKeyLike, | ||
InstanceKeyType, | ||
) | ||
from rerun2.components.keypoint_id import ( # noqa: F401 | ||
from rerun2.components.keypoint_id import ( | ||
KeypointId, | ||
KeypointIdArray, | ||
KeypointIdArrayLike, | ||
KeypointIdLike, | ||
KeypointIdType, | ||
) | ||
from rerun2.components.label import Label, LabelArray, LabelArrayLike, LabelLike, LabelType # noqa: F401 | ||
from rerun2.components.point2d import Point2D, Point2DArray, Point2DArrayLike, Point2DLike, Point2DType # noqa: F401 | ||
from rerun2.components.radius import Radius, RadiusArray, RadiusArrayLike, RadiusLike, RadiusType # noqa: F401 | ||
from rerun2.components.label import Label, LabelArray, LabelArrayLike, LabelLike, LabelType | ||
from rerun2.components.point2d import Point2D, Point2DArray, Point2DArrayLike, Point2DLike, Point2DType | ||
from rerun2.components.radius import Radius, RadiusArray, RadiusArrayLike, RadiusLike, RadiusType |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# NOTE: This file was autogenerated by re_types_builder; DO NOT EDIT. | ||
|
||
# NOTE: | ||
# - we use fully qualified paths to prevent lazy circular imports | ||
# - `noqa F401` (unused import) everywhere because, while not strictly necessary, | ||
# these imports are very nice for end users. | ||
from __future__ import annotations | ||
|
||
from rerun2.datatypes.vec2d import Vec2D, Vec2DArray, Vec2DArrayLike, Vec2DLike, Vec2DType # noqa: F401 | ||
__all__ = ["Vec2D", "Vec2DLike", "Vec2DArray", "Vec2DArrayLike", "Vec2DType"] | ||
|
||
# NOTE: we use fully qualified paths to prevent lazy circular imports. | ||
from rerun2.datatypes.vec2d import Vec2D, Vec2DArray, Vec2DArrayLike, Vec2DLike, Vec2DType |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters