pub struct Outputs<R: JitRuntime> {
pub colors_rgb_3d: JitTensor<R>,
pub conics: JitTensor<R>,
pub depths: JitTensor<R>,
pub is_colors_rgb_3d_not_clamped: JitTensor<R>,
pub point_tile_bounds: JitTensor<R>,
pub positions_2d: JitTensor<R>,
pub positions_3d_in_normalized: JitTensor<R>,
pub radii: JitTensor<R>,
pub rotations_matrix: JitTensor<R>,
pub tile_touched_counts: JitTensor<R>,
}
Expand description
Outputs.
Fields§
§colors_rgb_3d: JitTensor<R>
$ C_{rgb} \in \mathbb{R}^3 $ of $ p $ points.
conics: JitTensor<R>
$ \Sigma^{’-1} \in \mathbb{R}^{2 \times 2} $ of $ p $ points.
Inverse of the 2D covariance.
It can be $ \mathbb{R}^{3} $ since it is symmetric.
depths: JitTensor<R>
$ P_v.z \in \mathbb{R}$ of $ p $ points.
is_colors_rgb_3d_not_clamped: JitTensor<R>
$ \neg \text{clamped}(C_{rgb}) \in \mathbb{R}^3 $ of $ p $ points.
point_tile_bounds: JitTensor<R>
$ [x_{\max}\ x_{\min}\ y_{\max}\ y_{\min}] $ of $ p $ points.
$ x, y \in \mathbb{N} $ are the tile indices.
positions_2d: JitTensor<R>
$ P^’ \in \mathbb{R}^2 $ of $ p $ points.
positions_3d_in_normalized: JitTensor<R>
$ P_v.xy / P_v.z \in \mathbb{R}^2 $ of $ p $ points.
radii: JitTensor<R>
$ r \in \mathbb{N} $ of $ p $ points.
rotations_matrix: JitTensor<R>
$ R_s \in \mathbb{R}^{3 \times 3} $ of $ p $ points.
tile_touched_counts: JitTensor<R>
$ T \in \mathbb{N} $ of $ p $ points.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for Outputs<R>
impl<R> !RefUnwindSafe for Outputs<R>
impl<R> Send for Outputs<R>
impl<R> Sync for Outputs<R>
impl<R> Unpin for Outputs<R>
impl<R> !UnwindSafe for Outputs<R>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more