Skip to content

wxMathPlot is an add-on library for wxWidgets which provides a framework for easy plotting of mathematical functions, sampled data and generic 2D plots.

Notifications You must be signed in to change notification settings

gagiuntoli/wxMathPlot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wxMathPlot library

This is a fork of the original wxMathPlot library, a framework for mathematical graph plotting in wxWidgets.

Compilation

Linux

cmake -B build -DCMAKE_BUILD_TYPE=[Debug|Release]
cmake --build build

Examples

After compilation, the examples can be run simply doing:

./build/main_<example>

The source code is located in the main/ folder.

Integration with other code

CMake

When using CMake, locate the library in an internal directory of your project like lib/wxMathPlot/ and then on your CMakeLists.txt add:

add_subdirectory(lib/wxMathPlot)

target_link_libraries(application
   wxWidgets::wxWidgets
   wxmathplot
   ... # other libraries
)

This will link your application against wxMathPlot.

Contact

About

wxMathPlot is an add-on library for wxWidgets which provides a framework for easy plotting of mathematical functions, sampled data and generic 2D plots.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 99.1%
  • CMake 0.9%