···3636 * holds the controllers with the ball pointing up and the buttons on the back
3737 * pointing forward. Which if you read the documentation of @ref psmv_device
3838 * will that the axis of the PSMV are also perfectly aligned with the users
3939- * coordinate system. So everything "attached" to the user have it's coordinate
3939+ * coordinate system. So everything "attached" to the user has its coordinate
4040 * system parallel to the user's.
4141 *
4242- * The camera on the other hand is looking directly at the user, it's Z-axis and
4242+ * The camera on the other hand is looking directly at the user, its Z-axis and
4343 * X-axis is flipped in relation to the user's. So to compare what is sees to
4444 * what the user sees, everything is rotated 180° around the Y-axis.
4545 */
+10-4
src/xrt/auxiliary/tracking/t_tracking.h
···118118/*!
119119 * Update the reference counts on a stereo calibration data(s).
120120 *
121121- * @param dst Pointer to a object reference, if the object reference is
122122- * non-null will decrement it's counter. The reference that
121121+ * @param[in,out] dst Pointer to a object reference: if the object reference is
122122+ * non-null will decrement its counter. The reference that
123123 * @p dst points to will be set to @p src.
124124- * @param[in] src Object to be have it's refcount increased @p dst is set to
125125- * this.
124124+ * @param[in] src New object for @p dst to refer to (may be null).
125125+ * If non-null, will have its refcount increased.
126126 *
127127 * @relates t_stereo_camera_calibration
128128 */
···150150151151/*!
152152 * Small helper function that dumps the calibration data to logging.
153153+ *
154154+ * @relates t_stereo_camera_calibration
153155 */
154156void
155157t_stereo_camera_calibration_dump(struct t_stereo_camera_calibration *c);
156158157159/*!
158160 * Load stereo calibration data from a given file.
161161+ *
162162+ * @relates t_stereo_camera_calibration
159163 */
160164bool
161165t_stereo_camera_calibration_load_v1(FILE *calib_file, struct t_stereo_camera_calibration **out_data);
162166163167/*!
164168 * Save the given stereo calibration data to the given file.
169169+ *
170170+ * @relates t_stereo_camera_calibration
165171 */
166172bool
167173t_stereo_camera_calibration_save_v1(FILE *calib_file, struct t_stereo_camera_calibration *data);