OpenCurves  0.9
timesampling.h
1 //
2 // author Kazys Stepanas
3 //
4 // Copyright (c) CSIRO 2015
5 //
6 #ifndef TIMESAMPLING_H_
7 #define TIMESAMPLING_H_
8 
12 {
13  unsigned column;
14  double base;
15  double scale;
16  unsigned flags;
17 };
18 
19 #endif // TIMESAMPLING_H_
unsigned column
Index of the time column: 1-based, zero for none.
Definition: timesampling.h:13
double scale
Scale time values by this (even with no time column).
Definition: timesampling.h:15
Defines how to sample a plot file.
Definition: timesampling.h:11
unsigned flags
Additional flags (for generation).
Definition: timesampling.h:16
double base
Base time, subtracted from the time value before scaling.
Definition: timesampling.h:14