struct errors

Overview

struct errors
{
    // fields

    int32_t first_frame;
    float r_err;
    float t_err;
    float len;
    float speed;

    // construction

    errors(
        int32_t first_frame,
        float r_err,
        float t_err,
        float len,
        float speed
        );
};