SFML community forums

General => SFML projects => Topic started by: zper on September 29, 2020, 10:50:11 pm

Title: Visualization/plot library with SFML and Bazel
Post by: zper on September 29, 2020, 10:50:11 pm
Hi everyone!

I'd like to present a "free-time" project that I'm currently working on.
It's a visualization tool which uses SFML under the hood (duh). The whole project is built with Bazel.
It has some basic plotting abilities like line and scatter plots but more will come in the future (I hope).

Github link: https://github.com/zpervan/plotingZ (https://github.com/zpervan/plotingZ)

Examples:
(https://github.com/zpervan/plotingZ/blob/master/Preview/sine_wave_scatter_plot_example.png?raw=true)

(https://github.com/zpervan/plotingZ/blob/master/Preview/sine_wave_line_plot_example.png?raw=true)

There is room for lot of improvements so feel free to leave a comment :)

Thanks and cheers!
Title: Re: Visualization/plot library with SFML and Bazel
Post by: Kvaz1r on October 14, 2020, 04:22:19 pm
Looks promising, but why not use and contribute to some already existed project(for example SFGraphing (https://github.com/cherrysrc/SFGraphing))? Because there are a lots projects with basic chart support (line, scatter,...) but I didn't find any that has support for more advance charts (like time series or candlestick chart).
Title: Re: Visualization/plot library with SFML and Bazel
Post by: zper on October 17, 2020, 04:07:26 pm
Looks promising, but why not use and contribute to some already existed project(for example SFGraphing (https://github.com/cherrysrc/SFGraphing))? Because there are a lots projects with basic chart support (line, scatter,...) but I didn't find any that has support for more advance charts (like time series or candlestick chart).

This project was a starting point with SFML, Bazel, Github actions and other C++ libraries, but I see your point here. Will check it out definitely!  Thanks for the heads up 8)
Title: Re: Visualization/plot library with SFML and Bazel
Post by: MoriokaReimen on January 23, 2021, 03:00:12 pm
I am glad to find someone who is working on the same kind of project as mine.
Here is my free-time project "SFPlot".

https://github.com/MoriokaReimen/SFPlot

This library supports

1. Cartesian Chart (2D X-Y Chart)
2. Pie Chart
3. Radar Chart
4. Bar Chart
5. Circle Bar Chart(Arc Chart)

Opinions, pull-request and advice are welcome.