ofxPlotter allows to plot data on screen.

yeswecan 47d0dab922 Screenshot for a repo added 9 سال پیش
example 1ce1cf6d55 Added example 9 سال پیش
src 1e075e0122 Added drawing a value over a mouse position 9 سال پیش
readme.md 17ee072d84 Initial commit 9 سال پیش
screenshot.png 47d0dab922 Screenshot for a repo added 9 سال پیش

readme.md

ofxPlotter

Introduction

A simple function plotter class for openFrameworks with built-in variable filtering and a ascetic syntax.

Usage

ofxPlotter is designed to be as simple and as minimal as possible for plotting functions in realtime.

setWindow(int windowSize); // set window (a.k.a. plot length)

plotter["variable name"] << variable; // add a new data to the plot "variable name"

plotter.draw(100, 100, 300, 300); // draw the plot

Every variable name's plot will be drawn separately in a Rectangle that's position on screen is x = 100, y = 100 and size is width = 300, height = 300.