mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
ab8f16961e
Apply clang-format-all.sh using the _clang-format file through all the cpp/.h files. make sure not to apply it to certain serialization structures, since some parser expects the * as part of the name, instead of type. This commit contains no other changes aside from adding and applying clang-format-all.sh
23 lines
882 B
C++
23 lines
882 B
C++
#ifndef TIME_SERIES_CANVAS_H
|
|
#define TIME_SERIES_CANVAS_H
|
|
|
|
class TimeSeriesCanvas
|
|
{
|
|
protected:
|
|
struct TimeSeriesInternalData* m_internalData;
|
|
void shift1PixelToLeft();
|
|
|
|
public:
|
|
TimeSeriesCanvas(struct Common2dCanvasInterface* canvasInterface, int width, int height, const char* windowTitle);
|
|
virtual ~TimeSeriesCanvas();
|
|
|
|
void setupTimeSeries(float yScale, int ticksPerSecond, int startTime, bool clearCanvas = true);
|
|
void addDataSource(const char* dataSourceLabel, unsigned char red, unsigned char green, unsigned char blue);
|
|
void insertDataAtCurrentTime(float value, int dataSourceIndex, bool connectToPrevious);
|
|
float getCurrentTime() const;
|
|
void grapicalPrintf(const char* str, void* fontData, int rasterposx, int rasterposy, unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha);
|
|
|
|
virtual void nextTick();
|
|
};
|
|
|
|
#endif //TIME_SERIES_CANVAS_H
|