File tree 2 files changed +2
-2
lines changed
crates/re_space_view_spatial/src/visualizers
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ impl Arrows2DVisualizer {
132
132
itertools:: Either :: Right ( data. vectors . iter ( ) . zip ( origins) . map (
133
133
|( vector, origin) | {
134
134
// `0.45` rather than `0.5` to account for cap and such
135
- ( glam:: Vec2 :: from ( origin. 0 ) + glam:: Vec2 :: from ( vector. 0 ) ) * 0.45
135
+ glam:: Vec2 :: from ( origin. 0 ) + glam:: Vec2 :: from ( vector. 0 ) * 0.45
136
136
} ,
137
137
) )
138
138
} ;
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ impl Arrows3DVisualizer {
132
132
itertools:: Either :: Right ( data. vectors . iter ( ) . zip ( origins) . map (
133
133
|( vector, origin) | {
134
134
// `0.45` rather than `0.5` to account for cap and such
135
- ( glam:: Vec3 :: from ( origin. 0 ) + glam:: Vec3 :: from ( vector. 0 ) ) * 0.45
135
+ glam:: Vec3 :: from ( origin. 0 ) + glam:: Vec3 :: from ( vector. 0 ) * 0.45
136
136
} ,
137
137
) )
138
138
} ;
You can’t perform that action at this time.
0 commit comments