Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Visualization/plot library with SFML and Bazel  (Read 5595 times)

0 Members and 1 Guest are viewing this topic.

zper

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Visualization/plot library with SFML and Bazel
« 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

Examples:




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

Thanks and cheers!
« Last Edit: September 29, 2020, 10:51:50 pm by zper »

Kvaz1r

  • Newbie
  • *
  • Posts: 39
    • View Profile
    • Email
Re: Visualization/plot library with SFML and Bazel
« Reply #1 on: October 14, 2020, 04:22:19 pm »
Looks promising, but why not use and contribute to some already existed project(for example 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).

zper

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Re: Visualization/plot library with SFML and Bazel
« Reply #2 on: October 17, 2020, 04:07:26 pm »
Looks promising, but why not use and contribute to some already existed project(for example 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)

MoriokaReimen

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: Visualization/plot library with SFML and Bazel
« Reply #3 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.