Skip to content

Commit

Permalink
Don't boost the outlined radius of GeoPoints (#8115)
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc authored Nov 13, 2024
1 parent 7e513d1 commit 2c4b657
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/viewer/re_space_view_map/src/visualizers/geo_points.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,8 @@ impl GeoPointsVisualizer {
highlight: &SpaceViewHighlights,
) -> Result<(), PointCloudDrawDataError> {
let mut points = re_renderer::PointCloudBuilder::new(render_ctx);
points.radius_boost_in_ui_points_for_outlines(
re_space_view::SIZE_BOOST_IN_POINTS_FOR_POINT_OUTLINES,
);
// NOTE: Do not `points.radius_boost_in_ui_points_for_outlines`! The points are not shaded,
// so boosting the outline radius would make it erreously large.

for (entity_path, batch) in &self.batches {
let (positions, radii): (Vec<_>, Vec<_>) = batch
Expand Down

0 comments on commit 2c4b657

Please sign in to comment.