-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factor out
NearClipPlane
from VisualBounds2D
- Loading branch information
Showing
22 changed files
with
407 additions
and
110 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
crates/store/re_types/definitions/rerun/blueprint/archetypes.fbs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
crates/store/re_types/definitions/rerun/blueprint/archetypes/near_clip_plane.fbs
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace rerun.blueprint.archetypes; | ||
|
||
/// Controls the distance to the near clip plane in 3D scene units. | ||
table NearClipPlane ( | ||
"attr.rerun.scope": "blueprint", | ||
"attr.rust.derive": "Copy" | ||
) { | ||
/// Controls the distance to the near clip plane in 3D scene units. | ||
/// | ||
/// Content closer than this distance will not be visible. | ||
near_clip_plane: rerun.blueprint.components.NearClipPlane ("attr.rerun.component_optional", order: 1000); | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
186 changes: 186 additions & 0 deletions
186
crates/store/re_types/src/blueprint/archetypes/near_clip_plane.rs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
63 changes: 8 additions & 55 deletions
63
crates/store/re_types/src/blueprint/archetypes/visual_bounds2d.rs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.