comparison data/model/Path.h @ 1863:14bf9bf5ac28

Comment only
author Chris Cannam
date Fri, 29 May 2020 17:37:41 +0100
parents 9d82b164f264
children
comparison
equal deleted inserted replaced
1862:3072aa267248 1863:14bf9bf5ac28
26 { 26 {
27 PathPoint(sv_frame_t _frame) : 27 PathPoint(sv_frame_t _frame) :
28 frame(_frame), mapframe(_frame) { } 28 frame(_frame), mapframe(_frame) { }
29 PathPoint(sv_frame_t _frame, sv_frame_t _mapframe) : 29 PathPoint(sv_frame_t _frame, sv_frame_t _mapframe) :
30 frame(_frame), mapframe(_mapframe) { } 30 frame(_frame), mapframe(_mapframe) { }
31
32 // "The path consists of a series of points, each with frame equal
33 // to the frame on the source model (aligned model) and mapframe
34 // equal to the frame on the target model (reference model). Both
35 // should be monotonically increasing."
31 36
32 sv_frame_t frame; 37 sv_frame_t frame;
33 sv_frame_t mapframe; 38 sv_frame_t mapframe;
34 39
35 void toXml(QTextStream &stream, QString indent = "", 40 void toXml(QTextStream &stream, QString indent = "",