6#include "../result.hpp"
19 using UInt8Builder = NumericBuilder<UInt8Type>;
52 struct Loggable<components::InterpolationMode> {
53 static constexpr std::string_view ComponentType =
"rerun.components.InterpolationMode";
56 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
59 static Result<std::shared_ptr<arrow::Array>> to_arrow(
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:103
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:79
InterpolationMode
Component: Specifies how values between data points are interpolated in time series.
Definition interpolation_mode.hpp:24
@ Linear
Connect data points with straight line segments.
@ StepBefore
Jump to the new value immediately, then hold until the next data point.
@ StepAfter
Hold the previous value until the next data point, then jump.
@ StepMid
Hold the previous value until the midpoint between data points, then jump to the new value.
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23