2022-04-19 04:42:18 +08:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-06-21 04:24:47 +08:00
|
|
|
|
|
|
|
message( STATUS )
|
|
|
|
message( STATUS "............................................................................." )
|
|
|
|
message( STATUS ".. BUILDING EXAMPLES" )
|
|
|
|
message( STATUS "............................................................................." )
|
|
|
|
|
2022-07-23 03:41:07 +08:00
|
|
|
# needs to be first for Precompiled Headers to work
|
|
|
|
add_subdirectory(simpletest)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(jkqtfastplotter_test)
|
|
|
|
|
|
|
|
add_subdirectory(jkqtmathtext_simpletest)
|
|
|
|
add_subdirectory(jkqtmathtext_test)
|
|
|
|
|
2019-06-21 21:46:53 +08:00
|
|
|
add_subdirectory(jkqtplot_test)
|
2019-06-21 04:24:47 +08:00
|
|
|
|
2019-06-21 19:44:49 +08:00
|
|
|
add_subdirectory(advplotstyling)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(barchart)
|
|
|
|
add_subdirectory(boxplot)
|
|
|
|
add_subdirectory(contourplot)
|
|
|
|
add_subdirectory(datastore)
|
|
|
|
add_subdirectory(datastore_groupedstat)
|
|
|
|
add_subdirectory(datastore_iterators)
|
|
|
|
add_subdirectory(datastore_regression)
|
|
|
|
add_subdirectory(datastore_statistics)
|
|
|
|
add_subdirectory(datastore_statistics_2d)
|
|
|
|
add_subdirectory(dateaxes)
|
|
|
|
add_subdirectory(distributionplot)
|
|
|
|
add_subdirectory(errorbarstyles)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(evalcurve)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(filledgraphs)
|
|
|
|
add_subdirectory(functionplot)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(geo_arrows)
|
- improved: geometric objects now use an adaptive drawing algorithm to represent curves (before e.g. ellipses were always separated into a fixed number of line-segments)
- improved: constructors and access functions for several geometric objects (e.g. more constructors, additional functions to retrieve parameters in diferent forms, iterators for polygons, ...)
- new: all geometric objects can either be drawn as graphic element (i.e. lines are straight line, even on non-linear axes), or as mathematical curve (i.e. on non-linear axes, lines become the appropriate curve representing the linear function, connecting the given start/end-points). The only exceptions are ellipses (and the derived arcs,pies,chords), which are always drawn as mathematical curves
2020-09-04 05:08:52 +08:00
|
|
|
add_subdirectory(geo_simple)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(geometric)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(imageplot)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(imageplot_cimg)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(imageplot_modifier)
|
|
|
|
add_subdirectory(imageplot_nodatastore)
|
|
|
|
add_subdirectory(imageplot_opencv)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(imageplot_userpal)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(impulsesplot)
|
|
|
|
add_subdirectory(logaxes)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(mandelbrot)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(multiplot)
|
|
|
|
add_subdirectory(parametriccurve)
|
|
|
|
add_subdirectory(paramscatterplot)
|
|
|
|
add_subdirectory(paramscatterplot_image)
|
|
|
|
add_subdirectory(parsedfunctionplot)
|
|
|
|
add_subdirectory(rgbimageplot)
|
2019-11-16 20:50:43 +08:00
|
|
|
add_subdirectory(rgbimageplot_cimg)
|
2020-09-12 05:22:04 +08:00
|
|
|
add_subdirectory(rgbimageplot_opencv)
|
2019-06-21 04:24:47 +08:00
|
|
|
add_subdirectory(rgbimageplot_qt)
|
|
|
|
add_subdirectory(speed)
|
|
|
|
add_subdirectory(stackedbars)
|
|
|
|
add_subdirectory(stepplots)
|
|
|
|
add_subdirectory(styledboxplot)
|
|
|
|
add_subdirectory(styling)
|
|
|
|
add_subdirectory(symbols_and_errors)
|
|
|
|
add_subdirectory(symbols_and_styles)
|
|
|
|
add_subdirectory(ui)
|
|
|
|
add_subdirectory(user_interaction)
|
|
|
|
add_subdirectory(violinplot)
|
2022-05-12 04:55:23 +08:00
|
|
|
add_subdirectory(wiggleplots)
|
2019-06-21 04:24:47 +08:00
|
|
|
|