rerun 0.31.2

Log images, point clouds, etc, and visualize them effortlessly
Documentation
// NOTE: Have a look at `re_sdk/src/lib.rs` for an accurate listing of all these symbols.
pub use re_sdk::*;

/// Transform helpers, for use with [`archetypes::Transform3D`].
pub mod transform {
    pub use re_sdk_types::datatypes::{Angle, Quaternion, RotationAxisAngle};
}

/// Coordinate system helpers, for use with [`components::ViewCoordinates`].
pub mod coordinates {
    pub use re_sdk_types::view_coordinates::{Axis3, Handedness, Sign, SignedAxis3};
}

pub use re_sdk_types::{archetypes, components, datatypes};

mod prelude {
    // Import all archetypes into the global namespace to minimize
    // the amount of typing for our users.
    // Also import any component or datatype that has a unique name:
    pub use re_chunk::TimeColumn;
    pub use re_sdk_types::archetypes::*;
    pub use re_sdk_types::components::{
        AlbedoFactor, Color, FillMode, HalfSize2D, HalfSize3D, ImageFormat, LineStrip2D,
        LineStrip3D, MediaType, Position2D, Position3D, Radius, Scale3D, Text, TextLogLevel,
        TransformRelation, TriangleIndices, Vector2D, Vector3D,
    };
    pub use re_sdk_types::datatypes::{
        Angle, AnnotationInfo, ChannelDatatype, ClassDescription, ColorModel, Float32,
        KeypointPair, Mat3x3, PixelFormat, Quaternion, Rgba32, RotationAxisAngle, TensorBuffer,
        TensorData, Vec2D, Vec3D, Vec4D,
    };
    // Special utility types.
    pub use re_sdk_types::{AnyValues, DynamicArchetype, Rotation3D};
}
pub use prelude::*;