From 0e85c1b94179639d2a2c7623f22dd7f74021d2f8 Mon Sep 17 00:00:00 2001 From: Jason Christopherson Date: Wed, 28 Feb 2024 16:09:45 -0600 Subject: [PATCH 1/2] Update scripts --- CMakeLists.txt | 5 +-- dependencies/CMakeLists.txt | 4 -- dependencies/collections/CMakeLists.txt | 11 ----- dependencies/ferror/CMakeLists.txt | 17 +------- dependencies/forcolormap/CMakeLists.txt | 11 ----- dependencies/fstring/CMakeLists.txt | 11 ----- dependencies/geompack/CMakeLists.txt | 11 ----- fpm.toml | 2 +- install/CMakeLists.txt | 53 ------------------------- install/fplotConfig.cmake.in | 3 -- install/template.pc | 10 ----- 11 files changed, 3 insertions(+), 135 deletions(-) delete mode 100644 install/CMakeLists.txt delete mode 100644 install/fplotConfig.cmake.in delete mode 100644 install/template.pc diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e59077..179bace 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24) project( fplot LANGUAGES Fortran - VERSION 1.7.0 + VERSION 1.7.1 ) # Get helper macros and functions @@ -31,9 +31,6 @@ link_library(${PROJECT_NAME} ${collections_LIBRARY} ${collections_INCLUDE_DIR}) link_library(${PROJECT_NAME} ${geompack_LIBRARY} ${geompack_INCLUDE_DIR}) link_library(${PROJECT_NAME} ${forcolormap_LIBRARY} ${forcolormap_INCLUDE_DIR}) -# Installation -add_subdirectory(install) - # ------------------------------------------------------------------------------ # EXAMPLES # ------------------------------------------------------------------------------ diff --git a/dependencies/CMakeLists.txt b/dependencies/CMakeLists.txt index 62afe02..f779609 100644 --- a/dependencies/CMakeLists.txt +++ b/dependencies/CMakeLists.txt @@ -1,7 +1,3 @@ -# Get the macros and functions we'll need -include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake") -include(FetchContent) - # Get FERROR add_subdirectory(ferror) set(ferror_LIBRARY ${ferror_LIBRARY} PARENT_SCOPE) diff --git a/dependencies/collections/CMakeLists.txt b/dependencies/collections/CMakeLists.txt index ee79940..5d078fa 100644 --- a/dependencies/collections/CMakeLists.txt +++ b/dependencies/collections/CMakeLists.txt @@ -10,17 +10,6 @@ FetchContent_Declare( FetchContent_MakeAvailable(collections) -if (WIN32) - if (BUILD_SHARED_LIBS) - add_custom_command( - TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different - $ - $ - ) - endif() -endif() - set(collections_INCLUDE_DIR ${collections_BINARY_DIR}/include) set(collections_INCLUDE_DIR ${collections_INCLUDE_DIR} PARENT_SCOPE) diff --git a/dependencies/ferror/CMakeLists.txt b/dependencies/ferror/CMakeLists.txt index 6153edd..c78fc2c 100644 --- a/dependencies/ferror/CMakeLists.txt +++ b/dependencies/ferror/CMakeLists.txt @@ -1,4 +1,3 @@ -# Get the macros and functions we'll need include(FetchContent) # Fetch the proper content @@ -6,28 +5,14 @@ FetchContent_Declare( ferror GIT_REPOSITORY "https://github.com/jchristopherson/ferror" ) - FetchContent_MakeAvailable(ferror) -if (WIN32) - if (BUILD_SHARED_LIBS) - add_custom_command( - TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different - $ - $ - $ - ) - endif() -endif() - set(forcolormap_INCLUDE_DIR ${forcolormap_BINARY_DIR}/include) set(forcolormap_INCLUDE_DIR ${forcolormap_INCLUDE_DIR} PARENT_SCOPE) diff --git a/dependencies/fstring/CMakeLists.txt b/dependencies/fstring/CMakeLists.txt index 5d83d36..73ffb0f 100644 --- a/dependencies/fstring/CMakeLists.txt +++ b/dependencies/fstring/CMakeLists.txt @@ -10,17 +10,6 @@ FetchContent_Declare( FetchContent_MakeAvailable(fstring) -if (WIN32) - if (BUILD_SHARED_LIBS) - add_custom_command( - TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different - $ - $ - ) - endif() -endif() - set(fstring_INCLUDE_DIR ${fstring_BINARY_DIR}/include) set(fstring_INCLUDE_DIR ${fstring_INCLUDE_DIR} PARENT_SCOPE) diff --git a/dependencies/geompack/CMakeLists.txt b/dependencies/geompack/CMakeLists.txt index 13f007c..094ae83 100644 --- a/dependencies/geompack/CMakeLists.txt +++ b/dependencies/geompack/CMakeLists.txt @@ -10,17 +10,6 @@ FetchContent_Declare( FetchContent_MakeAvailable(geompack) -if (WIN32) - if (BUILD_SHARED_LIBS) - add_custom_command( - TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different - $ - $ - ) - endif() -endif() - set(geompack_INCLUDE_DIR ${geompack_BINARY_DIR}/include) set(geompack_INCLUDE_DIR ${geompack_INCLUDE_DIR} PARENT_SCOPE) diff --git a/fpm.toml b/fpm.toml index 9de71f0..7d26439 100644 --- a/fpm.toml +++ b/fpm.toml @@ -1,5 +1,5 @@ name = "fplot" -version = "1.7.0" +version = "1.7.1" license = "GPL-3.0" author = "Jason Christopherson" maintainer = "Jason Christopherson" diff --git a/install/CMakeLists.txt b/install/CMakeLists.txt deleted file mode 100644 index 9298887..0000000 --- a/install/CMakeLists.txt +++ /dev/null @@ -1,53 +0,0 @@ -# Get the macros and functions we'll need -include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake") -include(CMakePackageConfigHelpers) - -# Install the library and necessary include files -install_library( - ${PROJECT_NAME} - ${CMAKE_INSTALL_LIBDIR} - ${CMAKE_INSTALL_BINDIR} - ${PROJECT_INCLUDE_DIR} - ${CMAKE_INSTALL_PREFIX} -) - -# Define the version file -write_basic_package_version_file( - ${CMAKE_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake - VERSION ${PROJECT_VERSION} - COMPATIBILITY AnyNewerVersion -) - -export( - EXPORT ${PROJECT_NAME}Targets - FILE ${CMAKE_BINARY_DIR}/${PROJECT_NAME}Targets.cmake -) - -# Define the configuration file -configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}Config.cmake.in - ${CMAKE_BINARY_DIR}/${PROJECT_NAME}Config.cmake - COPYONLY -) - -install( - EXPORT ${PROJECT_NAME}Targets - FILE ${PROJECT_NAME}Targets.cmake - DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} -) -install( - FILES - ${CMAKE_BINARY_DIR}/${PROJECT_NAME}Config.cmake - ${CMAKE_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake - DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} -) - -configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/template.pc - ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc - @ONLY -) -install( - FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc - DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig -) \ No newline at end of file diff --git a/install/fplotConfig.cmake.in b/install/fplotConfig.cmake.in deleted file mode 100644 index 5f9aabd..0000000 --- a/install/fplotConfig.cmake.in +++ /dev/null @@ -1,3 +0,0 @@ -if (NOT TARGET fplot) - include("${CMAKE_CURRENT_LIST_DIR}/fplotTargets.cmake") -endif() \ No newline at end of file diff --git a/install/template.pc b/install/template.pc deleted file mode 100644 index 1cc2932..0000000 --- a/install/template.pc +++ /dev/null @@ -1,10 +0,0 @@ -prefix = @CMAKE_INSTALL_PREFIX@ -libdir = ${prefix}/@CMAKE_INSTALL_FULL_LIBDIR@ -includedir = ${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ - -Name: @PROJECT_NAME@ -Description: FPLOT is a Fortran library providing a convenient interface for plotting with GNUPLOT. -Version: @PROJECT_VERSION@ -URL: https://github.com/jchristopherson/fplot -Libs: -L${libdir} -l@PROJECT_NAME@ -Cflags: -I${includedir} \ No newline at end of file From 1d5ad65ac4f7f3008976bdcb87dc22fc2ebd9956 Mon Sep 17 00:00:00 2001 From: Jason Christopherson Date: Wed, 28 Feb 2024 16:10:26 -0600 Subject: [PATCH 2/2] Update documentation --- docs/Doxyfile | 95 ++++++++++++++++--- docs/html/annotated.html | 2 +- docs/html/classes.html | 2 +- .../dir_68267d1309a1af8e8297ef4c3efbcdba.html | 4 +- docs/html/files.html | 2 +- docs/html/fplot__arrow_8f90_source.html | 4 +- docs/html/fplot__axis_8f90_source.html | 4 +- docs/html/fplot__colormap_8f90_source.html | 4 +- docs/html/fplot__colors_8f90_source.html | 4 +- docs/html/fplot__core_8f90_source.html | 4 +- .../fplot__core__routines_8f90_source.html | 4 +- ...t__delaunay__tri__surface_8f90_source.html | 4 +- ...fplot__filled__plot__data_8f90_source.html | 4 +- docs/html/fplot__label_8f90_source.html | 4 +- .../fplot__latex__terminal_8f90_source.html | 4 +- docs/html/fplot__legend_8f90_source.html | 4 +- docs/html/fplot__multiplot_8f90_source.html | 4 +- docs/html/fplot__plot_8f90_source.html | 4 +- docs/html/fplot__plot__2d_8f90_source.html | 4 +- docs/html/fplot__plot__3d_8f90_source.html | 4 +- docs/html/fplot__plot__axis_8f90_source.html | 4 +- docs/html/fplot__plot__bar_8f90_source.html | 4 +- docs/html/fplot__plot__data_8f90_source.html | 4 +- .../fplot__plot__data__2d_8f90_source.html | 4 +- .../fplot__plot__data__3d_8f90_source.html | 4 +- .../fplot__plot__data__bar_8f90_source.html | 4 +- ...plot__plot__data__colored_8f90_source.html | 4 +- ...__plot__data__error__bars_8f90_source.html | 4 +- ...ot__plot__data__histogram_8f90_source.html | 4 +- ...plot__plot__data__tri__2d_8f90_source.html | 4 +- docs/html/fplot__plot__polar_8f90_source.html | 4 +- .../fplot__png__terminal_8f90_source.html | 4 +- .../html/fplot__qt__terminal_8f90_source.html | 4 +- ...plot__scatter__plot__data_8f90_source.html | 4 +- docs/html/fplot__simplify_8f90_source.html | 4 +- .../fplot__surface__plot_8f90_source.html | 4 +- ...plot__surface__plot__data_8f90_source.html | 4 +- docs/html/fplot__terminal_8f90_source.html | 4 +- ..._tri__surface__plot__data_8f90_source.html | 4 +- ...angulations__delaunay__2d_8f90_source.html | 4 +- ...vector__field__plot__data_8f90_source.html | 4 +- .../fplot__windows__terminal_8f90_source.html | 4 +- .../fplot__wxt__terminal_8f90_source.html | 4 +- docs/html/functions.html | 2 +- docs/html/functions_c.html | 2 +- docs/html/functions_d.html | 2 +- docs/html/functions_e.html | 2 +- docs/html/functions_f.html | 2 +- docs/html/functions_func.html | 2 +- docs/html/functions_func_d.html | 2 +- docs/html/functions_func_e.html | 2 +- docs/html/functions_func_f.html | 2 +- docs/html/functions_func_g.html | 2 +- docs/html/functions_func_i.html | 2 +- docs/html/functions_func_p.html | 2 +- docs/html/functions_func_s.html | 2 +- docs/html/functions_func_t.html | 2 +- docs/html/functions_g.html | 2 +- docs/html/functions_i.html | 2 +- docs/html/functions_m.html | 2 +- docs/html/functions_p.html | 2 +- docs/html/functions_r.html | 2 +- docs/html/functions_s.html | 2 +- docs/html/functions_t.html | 2 +- docs/html/functions_vars.html | 2 +- docs/html/hierarchy.html | 2 +- docs/html/index.html | 2 +- ...__core_1_1assignment_07_0a_08-members.html | 2 +- ...acefplot__core_1_1assignment_07_0a_08.html | 4 +- ...re_1_1cm__get__string__result-members.html | 2 +- ...plot__core_1_1cm__get__string__result.html | 4 +- ...__core_1_1get__string__result-members.html | 2 +- ...acefplot__core_1_1get__string__result.html | 4 +- ..._core_1_1operator_07_0a_0a_08-members.html | 2 +- ...cefplot__core_1_1operator_07_0a_0a_08.html | 4 +- ...__core_1_1operator_07_2_0a_08-members.html | 2 +- ...acefplot__core_1_1operator_07_2_0a_08.html | 4 +- ...re_1_1pa__get__string__result-members.html | 2 +- ...plot__core_1_1pa__get__string__result.html | 4 +- ...re_1_1pd__get__string__result-members.html | 2 +- ...plot__core_1_1pd__get__string__result.html | 4 +- ...t__core_1_1simplify__polyline-members.html | 2 +- ...facefplot__core_1_1simplify__polyline.html | 4 +- ..._core_1_1spd__get__int__value-members.html | 2 +- ...cefplot__core_1_1spd__get__int__value.html | 4 +- ...e_1_1spd__get__string__result-members.html | 2 +- ...lot__core_1_1spd__get__string__result.html | 4 +- ...plot__core_1_1spd__get__value-members.html | 2 +- ...terfacefplot__core_1_1spd__get__value.html | 4 +- ...plot__core_1_1spd__set__value-members.html | 2 +- ...terfacefplot__core_1_1spd__set__value.html | 4 +- ..._1_1term__get__string__result-members.html | 2 +- ...ot__core_1_1term__get__string__result.html | 4 +- docs/html/namespacefplot__core.html | 2 +- docs/html/namespacemembers.html | 2 +- docs/html/namespacemembers_vars.html | 2 +- docs/html/namespaces.html | 2 +- .../structfplot__core_1_1color-members.html | 2 +- docs/html/structfplot__core_1_1color.html | 4 +- ...structfplot__core_1_1colormap-members.html | 2 +- docs/html/structfplot__core_1_1colormap.html | 4 +- ...fplot__core_1_1cool__colormap-members.html | 2 +- .../structfplot__core_1_1cool__colormap.html | 4 +- ...lot__core_1_1custom__colormap-members.html | 2 +- ...structfplot__core_1_1custom__colormap.html | 4 +- ...ot__core_1_1delaunay__tri__2d-members.html | 2 +- ...tructfplot__core_1_1delaunay__tri__2d.html | 4 +- ...ore_1_1delaunay__tri__surface-members.html | 2 +- ...fplot__core_1_1delaunay__tri__surface.html | 4 +- ...plot__core_1_1earth__colormap-members.html | 2 +- .../structfplot__core_1_1earth__colormap.html | 4 +- ...t__core_1_1filled__plot__data-members.html | 2 +- ...ructfplot__core_1_1filled__plot__data.html | 4 +- ...fplot__core_1_1grey__colormap-members.html | 2 +- .../structfplot__core_1_1grey__colormap.html | 4 +- ...tfplot__core_1_1hot__colormap-members.html | 2 +- .../structfplot__core_1_1hot__colormap.html | 4 +- ...plot__core_1_1latex__terminal-members.html | 2 +- .../structfplot__core_1_1latex__terminal.html | 4 +- .../structfplot__core_1_1legend-members.html | 2 +- docs/html/structfplot__core_1_1legend.html | 4 +- ...tructfplot__core_1_1multiplot-members.html | 2 +- docs/html/structfplot__core_1_1multiplot.html | 4 +- ...lot__core_1_1parula__colormap-members.html | 2 +- ...structfplot__core_1_1parula__colormap.html | 4 +- .../structfplot__core_1_1plot-members.html | 2 +- docs/html/structfplot__core_1_1plot.html | 4 +- ...structfplot__core_1_1plot__2d-members.html | 2 +- docs/html/structfplot__core_1_1plot__2d.html | 4 +- ...structfplot__core_1_1plot__3d-members.html | 2 +- docs/html/structfplot__core_1_1plot__3d.html | 4 +- ...uctfplot__core_1_1plot__arrow-members.html | 2 +- .../structfplot__core_1_1plot__arrow.html | 4 +- ...ructfplot__core_1_1plot__axis-members.html | 2 +- .../html/structfplot__core_1_1plot__axis.html | 4 +- ...tructfplot__core_1_1plot__bar-members.html | 2 +- docs/html/structfplot__core_1_1plot__bar.html | 4 +- ...ructfplot__core_1_1plot__data-members.html | 2 +- .../html/structfplot__core_1_1plot__data.html | 4 +- ...fplot__core_1_1plot__data__2d-members.html | 2 +- .../structfplot__core_1_1plot__data__2d.html | 4 +- ...fplot__core_1_1plot__data__3d-members.html | 2 +- .../structfplot__core_1_1plot__data__3d.html | 4 +- ...plot__core_1_1plot__data__bar-members.html | 2 +- .../structfplot__core_1_1plot__data__bar.html | 4 +- ...__core_1_1plot__data__colored-members.html | 2 +- ...uctfplot__core_1_1plot__data__colored.html | 4 +- ...re_1_1plot__data__error__bars-members.html | 2 +- ...plot__core_1_1plot__data__error__bars.html | 4 +- ...core_1_1plot__data__histogram-members.html | 2 +- ...tfplot__core_1_1plot__data__histogram.html | 4 +- ...__core_1_1plot__data__tri__2d-members.html | 2 +- ...uctfplot__core_1_1plot__data__tri__2d.html | 4 +- ...uctfplot__core_1_1plot__label-members.html | 2 +- .../structfplot__core_1_1plot__label.html | 4 +- ...ctfplot__core_1_1plot__object-members.html | 2 +- .../structfplot__core_1_1plot__object.html | 4 +- ...uctfplot__core_1_1plot__polar-members.html | 2 +- .../structfplot__core_1_1plot__polar.html | 4 +- ...tfplot__core_1_1png__terminal-members.html | 2 +- .../structfplot__core_1_1png__terminal.html | 4 +- ...ctfplot__core_1_1qt__terminal-members.html | 2 +- .../structfplot__core_1_1qt__terminal.html | 4 +- ...ot__core_1_1rainbow__colormap-members.html | 2 +- ...tructfplot__core_1_1rainbow__colormap.html | 4 +- ...__core_1_1scatter__plot__data-members.html | 2 +- ...uctfplot__core_1_1scatter__plot__data.html | 4 +- ...tfplot__core_1_1surface__plot-members.html | 2 +- .../structfplot__core_1_1surface__plot.html | 4 +- ...__core_1_1surface__plot__data-members.html | 2 +- ...uctfplot__core_1_1surface__plot__data.html | 4 +- ...structfplot__core_1_1terminal-members.html | 2 +- docs/html/structfplot__core_1_1terminal.html | 4 +- ...e_1_1tri__surface__plot__data-members.html | 2 +- ...lot__core_1_1tri__surface__plot__data.html | 4 +- ..._1_1vector__field__plot__data-members.html | 2 +- ...ot__core_1_1vector__field__plot__data.html | 4 +- ...ot__core_1_1windows__terminal-members.html | 2 +- ...tructfplot__core_1_1windows__terminal.html | 4 +- ...tfplot__core_1_1wxt__terminal-members.html | 2 +- .../structfplot__core_1_1wxt__terminal.html | 4 +- .../structfplot__core_1_1x__axis-members.html | 2 +- docs/html/structfplot__core_1_1x__axis.html | 4 +- ...structfplot__core_1_1y2__axis-members.html | 2 +- docs/html/structfplot__core_1_1y2__axis.html | 4 +- .../structfplot__core_1_1y__axis-members.html | 2 +- docs/html/structfplot__core_1_1y__axis.html | 4 +- .../structfplot__core_1_1z__axis-members.html | 2 +- docs/html/structfplot__core_1_1z__axis.html | 4 +- 189 files changed, 369 insertions(+), 298 deletions(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index c6b4870..2df7ea8 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -1,4 +1,4 @@ -# Doxyfile 1.9.8 +# Doxyfile 1.10.0 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. @@ -48,7 +48,7 @@ PROJECT_NAME = fplot # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.7.0 +PROJECT_NUMBER = 1.7.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -63,6 +63,12 @@ PROJECT_BRIEF = "A Fortran library providing a convenient interface for PROJECT_LOGO = +# With the PROJECT_ICON tag one can specify an icon that is included in the tabs +# when the HTML document is shown. Doxygen will copy the logo to the output +# directory. + +PROJECT_ICON = + # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If @@ -977,10 +983,10 @@ INPUT_FILE_ENCODING = # default file extension mappings. # # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm, -# *.cpp, *.cppm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, -# *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, *.php, -# *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be -# provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.cpp, *.cppm, *.ccm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, +# *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, +# *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to +# be provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, # *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. FILE_PATTERNS = *.c \ @@ -1176,7 +1182,8 @@ FORTRAN_COMMENT_AFTER = 72 SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. +# multi-line macros, enums or list initialized variables directly into the +# documentation. # The default value is: NO. INLINE_SOURCES = NO @@ -1248,6 +1255,46 @@ USE_HTAGS = NO VERBATIM_HEADERS = YES +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If the CLANG_ASSISTED_PARSING tag is set to YES and the CLANG_ADD_INC_PATHS +# tag is set to YES then doxygen will add the directory of each input to the +# include path. +# The default value is: YES. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_ADD_INC_PATHS = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- @@ -1431,6 +1478,26 @@ HTML_DYNAMIC_SECTIONS = NO HTML_CODE_FOLDING = YES +# If the HTML_COPY_CLIPBOARD tag is set to YES then doxygen will show an icon in +# the top right corner of code and text fragments that allows the user to copy +# its content to the clipboard. Note this only works if supported by the browser +# and the web page is served via a secure context (see: +# https://www.w3.org/TR/secure-contexts/), i.e. using the https: or file: +# protocol. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COPY_CLIPBOARD = YES + +# Doxygen stores a couple of settings persistently in the browser (via e.g. +# cookies). By default these settings apply to all HTML pages generated by +# doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store +# the settings under a project specific key, such that the user preferences will +# be stored separately. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_PROJECT_COOKIE = + # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to @@ -2279,9 +2346,9 @@ GENERATE_SQLITE3 = NO SQLITE3_OUTPUT = sqlite3 -# The SQLITE3_OVERWRITE_DB tag is set to YES, the existing doxygen_sqlite3.db +# The SQLITE3_RECREATE_DB tag is set to YES, the existing doxygen_sqlite3.db # database file will be recreated with each doxygen run. If set to NO, doxygen -# will warn if an a database file is already found and not modify it. +# will warn if a database file is already found and not modify it. # The default value is: YES. # This tag requires that the tag GENERATE_SQLITE3 is set to YES. @@ -2522,7 +2589,11 @@ DOT_FONTPATH = # the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the # CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used. # If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance -# relations will be shown as texts / links. +# relations will be shown as texts / links. Explicit enabling an inheritance +# graph or choosing a different representation for an inheritance graph of a +# specific class, can be accomplished by means of the command \inheritancegraph. +# Disabling an inheritance graph can be accomplished by means of the command +# \hideinheritancegraph. # Possible values are: NO, YES, TEXT, GRAPH and BUILTIN. # The default value is: YES. @@ -2587,8 +2658,8 @@ DOT_UML_DETAILS = NO # The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters # to display on a single line. If the actual line length exceeds this threshold -# significantly it will wrapped across multiple lines. Some heuristics are apply -# to avoid ugly line breaks. +# significantly it will be wrapped across multiple lines. Some heuristics are +# applied to avoid ugly line breaks. # Minimum value: 0, maximum value: 1000, default value: 17. # This tag requires that the tag HAVE_DOT is set to YES. diff --git a/docs/html/annotated.html b/docs/html/annotated.html index acccd96..c4dd04d 100644 --- a/docs/html/annotated.html +++ b/docs/html/annotated.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/classes.html b/docs/html/classes.html index 20034a5..e7681c3 100644 --- a/docs/html/classes.html +++ b/docs/html/classes.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html index 5625e1a..546d3f1 100644 --- a/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +++ b/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src Directory Reference +fplot: D:/Code/fplot-1/src Directory Reference @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/files.html b/docs/html/files.html index 33ed05e..fab489b 100644 --- a/docs/html/files.html +++ b/docs/html/files.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__arrow_8f90_source.html b/docs/html/fplot__arrow_8f90_source.html index 0324e8a..93cac82 100644 --- a/docs/html/fplot__arrow_8f90_source.html +++ b/docs/html/fplot__arrow_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_arrow.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_arrow.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__axis_8f90_source.html b/docs/html/fplot__axis_8f90_source.html index 06a09c2..cf8819b 100644 --- a/docs/html/fplot__axis_8f90_source.html +++ b/docs/html/fplot__axis_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_axis.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_axis.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__colormap_8f90_source.html b/docs/html/fplot__colormap_8f90_source.html index fae3fb4..b785aeb 100644 --- a/docs/html/fplot__colormap_8f90_source.html +++ b/docs/html/fplot__colormap_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_colormap.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_colormap.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__colors_8f90_source.html b/docs/html/fplot__colors_8f90_source.html index 82231a5..d8e167b 100644 --- a/docs/html/fplot__colors_8f90_source.html +++ b/docs/html/fplot__colors_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_colors.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_colors.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__core_8f90_source.html b/docs/html/fplot__core_8f90_source.html index 2c441df..e9b6f9b 100644 --- a/docs/html/fplot__core_8f90_source.html +++ b/docs/html/fplot__core_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_core.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_core.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__core__routines_8f90_source.html b/docs/html/fplot__core__routines_8f90_source.html index e728fdc..9522651 100644 --- a/docs/html/fplot__core__routines_8f90_source.html +++ b/docs/html/fplot__core__routines_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_core_routines.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_core_routines.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__delaunay__tri__surface_8f90_source.html b/docs/html/fplot__delaunay__tri__surface_8f90_source.html index f86fa9c..5486497 100644 --- a/docs/html/fplot__delaunay__tri__surface_8f90_source.html +++ b/docs/html/fplot__delaunay__tri__surface_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_delaunay_tri_surface.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_delaunay_tri_surface.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__filled__plot__data_8f90_source.html b/docs/html/fplot__filled__plot__data_8f90_source.html index 5a003cc..e1c5099 100644 --- a/docs/html/fplot__filled__plot__data_8f90_source.html +++ b/docs/html/fplot__filled__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_filled_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_filled_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__label_8f90_source.html b/docs/html/fplot__label_8f90_source.html index 5e5a122..2229414 100644 --- a/docs/html/fplot__label_8f90_source.html +++ b/docs/html/fplot__label_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_label.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_label.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__latex__terminal_8f90_source.html b/docs/html/fplot__latex__terminal_8f90_source.html index e002afe..8c1c3fd 100644 --- a/docs/html/fplot__latex__terminal_8f90_source.html +++ b/docs/html/fplot__latex__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_latex_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_latex_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__legend_8f90_source.html b/docs/html/fplot__legend_8f90_source.html index b6257af..963fdd0 100644 --- a/docs/html/fplot__legend_8f90_source.html +++ b/docs/html/fplot__legend_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_legend.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_legend.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__multiplot_8f90_source.html b/docs/html/fplot__multiplot_8f90_source.html index 5c18468..f06369c 100644 --- a/docs/html/fplot__multiplot_8f90_source.html +++ b/docs/html/fplot__multiplot_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_multiplot.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_multiplot.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot_8f90_source.html b/docs/html/fplot__plot_8f90_source.html index c787864..0157a21 100644 --- a/docs/html/fplot__plot_8f90_source.html +++ b/docs/html/fplot__plot_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__2d_8f90_source.html b/docs/html/fplot__plot__2d_8f90_source.html index e4b7602..7d159ef 100644 --- a/docs/html/fplot__plot__2d_8f90_source.html +++ b/docs/html/fplot__plot__2d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_2d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_2d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__3d_8f90_source.html b/docs/html/fplot__plot__3d_8f90_source.html index 8ec5cc5..6fba0a5 100644 --- a/docs/html/fplot__plot__3d_8f90_source.html +++ b/docs/html/fplot__plot__3d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_3d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_3d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__axis_8f90_source.html b/docs/html/fplot__plot__axis_8f90_source.html index bdeefd9..9e33657 100644 --- a/docs/html/fplot__plot__axis_8f90_source.html +++ b/docs/html/fplot__plot__axis_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_axis.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_axis.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__bar_8f90_source.html b/docs/html/fplot__plot__bar_8f90_source.html index 7879573..317cdec 100644 --- a/docs/html/fplot__plot__bar_8f90_source.html +++ b/docs/html/fplot__plot__bar_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_bar.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_bar.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data_8f90_source.html b/docs/html/fplot__plot__data_8f90_source.html index 08a272d..0e9c0da 100644 --- a/docs/html/fplot__plot__data_8f90_source.html +++ b/docs/html/fplot__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__2d_8f90_source.html b/docs/html/fplot__plot__data__2d_8f90_source.html index 1ef4bee..e2e6a85 100644 --- a/docs/html/fplot__plot__data__2d_8f90_source.html +++ b/docs/html/fplot__plot__data__2d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_2d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_2d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__3d_8f90_source.html b/docs/html/fplot__plot__data__3d_8f90_source.html index 20a768d..6c4af03 100644 --- a/docs/html/fplot__plot__data__3d_8f90_source.html +++ b/docs/html/fplot__plot__data__3d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_3d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_3d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__bar_8f90_source.html b/docs/html/fplot__plot__data__bar_8f90_source.html index 2be3617..cc981aa 100644 --- a/docs/html/fplot__plot__data__bar_8f90_source.html +++ b/docs/html/fplot__plot__data__bar_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_bar.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_bar.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__colored_8f90_source.html b/docs/html/fplot__plot__data__colored_8f90_source.html index b241a2e..d4135fb 100644 --- a/docs/html/fplot__plot__data__colored_8f90_source.html +++ b/docs/html/fplot__plot__data__colored_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_colored.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_colored.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__error__bars_8f90_source.html b/docs/html/fplot__plot__data__error__bars_8f90_source.html index c0e2433..ef920da 100644 --- a/docs/html/fplot__plot__data__error__bars_8f90_source.html +++ b/docs/html/fplot__plot__data__error__bars_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_error_bars.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_error_bars.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__histogram_8f90_source.html b/docs/html/fplot__plot__data__histogram_8f90_source.html index 19c3b75..f70a838 100644 --- a/docs/html/fplot__plot__data__histogram_8f90_source.html +++ b/docs/html/fplot__plot__data__histogram_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_histogram.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_histogram.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__data__tri__2d_8f90_source.html b/docs/html/fplot__plot__data__tri__2d_8f90_source.html index 6f1f954..ef06d59 100644 --- a/docs/html/fplot__plot__data__tri__2d_8f90_source.html +++ b/docs/html/fplot__plot__data__tri__2d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_data_tri_2d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_data_tri_2d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__plot__polar_8f90_source.html b/docs/html/fplot__plot__polar_8f90_source.html index 6b02ca9..70d9a86 100644 --- a/docs/html/fplot__plot__polar_8f90_source.html +++ b/docs/html/fplot__plot__polar_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_plot_polar.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_plot_polar.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__png__terminal_8f90_source.html b/docs/html/fplot__png__terminal_8f90_source.html index c013731..acdb5cc 100644 --- a/docs/html/fplot__png__terminal_8f90_source.html +++ b/docs/html/fplot__png__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_png_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_png_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__qt__terminal_8f90_source.html b/docs/html/fplot__qt__terminal_8f90_source.html index 03ebd71..1f81ebc 100644 --- a/docs/html/fplot__qt__terminal_8f90_source.html +++ b/docs/html/fplot__qt__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_qt_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_qt_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__scatter__plot__data_8f90_source.html b/docs/html/fplot__scatter__plot__data_8f90_source.html index 1f564a5..8b4506f 100644 --- a/docs/html/fplot__scatter__plot__data_8f90_source.html +++ b/docs/html/fplot__scatter__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_scatter_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_scatter_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__simplify_8f90_source.html b/docs/html/fplot__simplify_8f90_source.html index 9004ab2..eee7548 100644 --- a/docs/html/fplot__simplify_8f90_source.html +++ b/docs/html/fplot__simplify_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_simplify.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_simplify.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__surface__plot_8f90_source.html b/docs/html/fplot__surface__plot_8f90_source.html index 9f0f40b..a458ae7 100644 --- a/docs/html/fplot__surface__plot_8f90_source.html +++ b/docs/html/fplot__surface__plot_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_surface_plot.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_surface_plot.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__surface__plot__data_8f90_source.html b/docs/html/fplot__surface__plot__data_8f90_source.html index 8a52aa5..2c47493 100644 --- a/docs/html/fplot__surface__plot__data_8f90_source.html +++ b/docs/html/fplot__surface__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_surface_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_surface_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__terminal_8f90_source.html b/docs/html/fplot__terminal_8f90_source.html index 24c5829..057b303 100644 --- a/docs/html/fplot__terminal_8f90_source.html +++ b/docs/html/fplot__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__tri__surface__plot__data_8f90_source.html b/docs/html/fplot__tri__surface__plot__data_8f90_source.html index a6c3c37..3e66ec8 100644 --- a/docs/html/fplot__tri__surface__plot__data_8f90_source.html +++ b/docs/html/fplot__tri__surface__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_tri_surface_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_tri_surface_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__triangulations__delaunay__2d_8f90_source.html b/docs/html/fplot__triangulations__delaunay__2d_8f90_source.html index 2fb51cf..fb68496 100644 --- a/docs/html/fplot__triangulations__delaunay__2d_8f90_source.html +++ b/docs/html/fplot__triangulations__delaunay__2d_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_triangulations_delaunay_2d.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_triangulations_delaunay_2d.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__vector__field__plot__data_8f90_source.html b/docs/html/fplot__vector__field__plot__data_8f90_source.html index 71fd5fd..e0eb44c 100644 --- a/docs/html/fplot__vector__field__plot__data_8f90_source.html +++ b/docs/html/fplot__vector__field__plot__data_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_vector_field_plot_data.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_vector_field_plot_data.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__windows__terminal_8f90_source.html b/docs/html/fplot__windows__terminal_8f90_source.html index ab69f44..3ad5739 100644 --- a/docs/html/fplot__windows__terminal_8f90_source.html +++ b/docs/html/fplot__windows__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_windows_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_windows_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/fplot__wxt__terminal_8f90_source.html b/docs/html/fplot__wxt__terminal_8f90_source.html index 80d872e..68c1e79 100644 --- a/docs/html/fplot__wxt__terminal_8f90_source.html +++ b/docs/html/fplot__wxt__terminal_8f90_source.html @@ -5,7 +5,7 @@ -fplot: D:/Code/fplot/src/fplot_wxt_terminal.f90 Source File +fplot: D:/Code/fplot-1/src/fplot_wxt_terminal.f90 Source File @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions.html b/docs/html/functions.html index 538b94b..2bb7a85 100644 --- a/docs/html/functions.html +++ b/docs/html/functions.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_c.html b/docs/html/functions_c.html index 2b651d9..7e4959a 100644 --- a/docs/html/functions_c.html +++ b/docs/html/functions_c.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_d.html b/docs/html/functions_d.html index 7b0b78d..f0ea85b 100644 --- a/docs/html/functions_d.html +++ b/docs/html/functions_d.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_e.html b/docs/html/functions_e.html index 4ae3987..090c61b 100644 --- a/docs/html/functions_e.html +++ b/docs/html/functions_e.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_f.html b/docs/html/functions_f.html index 58ac68b..5a3587a 100644 --- a/docs/html/functions_f.html +++ b/docs/html/functions_f.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func.html b/docs/html/functions_func.html index 49db456..77d413f 100644 --- a/docs/html/functions_func.html +++ b/docs/html/functions_func.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_d.html b/docs/html/functions_func_d.html index 8488a48..0e91e1e 100644 --- a/docs/html/functions_func_d.html +++ b/docs/html/functions_func_d.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_e.html b/docs/html/functions_func_e.html index c52e40d..592ec1c 100644 --- a/docs/html/functions_func_e.html +++ b/docs/html/functions_func_e.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_f.html b/docs/html/functions_func_f.html index 1f20e7f..dc301ba 100644 --- a/docs/html/functions_func_f.html +++ b/docs/html/functions_func_f.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_g.html b/docs/html/functions_func_g.html index d9a4bed..1199617 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_i.html b/docs/html/functions_func_i.html index 7ea5660..d8a7b81 100644 --- a/docs/html/functions_func_i.html +++ b/docs/html/functions_func_i.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_p.html b/docs/html/functions_func_p.html index 140030b..cefb186 100644 --- a/docs/html/functions_func_p.html +++ b/docs/html/functions_func_p.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_s.html b/docs/html/functions_func_s.html index 22be86a..2525f20 100644 --- a/docs/html/functions_func_s.html +++ b/docs/html/functions_func_s.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_func_t.html b/docs/html/functions_func_t.html index 5a49900..600ec34 100644 --- a/docs/html/functions_func_t.html +++ b/docs/html/functions_func_t.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_g.html b/docs/html/functions_g.html index 3d75b2f..b2ff4c4 100644 --- a/docs/html/functions_g.html +++ b/docs/html/functions_g.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_i.html b/docs/html/functions_i.html index dfb8d89..05b6944 100644 --- a/docs/html/functions_i.html +++ b/docs/html/functions_i.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_m.html b/docs/html/functions_m.html index 67674e1..a3067f0 100644 --- a/docs/html/functions_m.html +++ b/docs/html/functions_m.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_p.html b/docs/html/functions_p.html index 7a509d2..21f5ff6 100644 --- a/docs/html/functions_p.html +++ b/docs/html/functions_p.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_r.html b/docs/html/functions_r.html index 6fd7d05..dca71e0 100644 --- a/docs/html/functions_r.html +++ b/docs/html/functions_r.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_s.html b/docs/html/functions_s.html index 9ea63be..c7f1c8b 100644 --- a/docs/html/functions_s.html +++ b/docs/html/functions_s.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_t.html b/docs/html/functions_t.html index 6ca826e..3d1fed6 100644 --- a/docs/html/functions_t.html +++ b/docs/html/functions_t.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/functions_vars.html b/docs/html/functions_vars.html index 5381837..3a6dcf0 100644 --- a/docs/html/functions_vars.html +++ b/docs/html/functions_vars.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/hierarchy.html b/docs/html/hierarchy.html index bf2d0e8..732ead2 100644 --- a/docs/html/hierarchy.html +++ b/docs/html/hierarchy.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/index.html b/docs/html/index.html index e341467..18abcb2 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/interfacefplot__core_1_1assignment_07_0a_08-members.html b/docs/html/interfacefplot__core_1_1assignment_07_0a_08-members.html index f2dae98..531fce5 100644 --- a/docs/html/interfacefplot__core_1_1assignment_07_0a_08-members.html +++ b/docs/html/interfacefplot__core_1_1assignment_07_0a_08-members.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/interfacefplot__core_1_1assignment_07_0a_08.html b/docs/html/interfacefplot__core_1_1assignment_07_0a_08.html index 0990300..4646ad0 100644 --- a/docs/html/interfacefplot__core_1_1assignment_07_0a_08.html +++ b/docs/html/interfacefplot__core_1_1assignment_07_0a_08.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
@@ -115,7 +115,7 @@

Definition at line 287 of file fplot_core.f90.


The documentation for this interface was generated from the following file:
diff --git a/docs/html/interfacefplot__core_1_1cm__get__string__result-members.html b/docs/html/interfacefplot__core_1_1cm__get__string__result-members.html index 1c80029..7be3990 100644 --- a/docs/html/interfacefplot__core_1_1cm__get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1cm__get__string__result-members.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
diff --git a/docs/html/interfacefplot__core_1_1cm__get__string__result.html b/docs/html/interfacefplot__core_1_1cm__get__string__result.html index f088f2e..42dbb86 100644 --- a/docs/html/interfacefplot__core_1_1cm__get__string__result.html +++ b/docs/html/interfacefplot__core_1_1cm__get__string__result.html @@ -27,7 +27,7 @@ -
fplot 1.7.0 +
fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
@@ -139,7 +139,7 @@

fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1get__string__result-members.html b/docs/html/interfacefplot__core_1_1get__string__result-members.html index de0070e..532886b 100644 --- a/docs/html/interfacefplot__core_1_1get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1get__string__result-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1get__string__result.html b/docs/html/interfacefplot__core_1_1get__string__result.html index e0e9120..7e8bc76 100644 --- a/docs/html/interfacefplot__core_1_1get__string__result.html +++ b/docs/html/interfacefplot__core_1_1get__string__result.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08-members.html b/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08-members.html index 94eba81..29a89dc 100644 --- a/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08-members.html +++ b/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08.html b/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08.html index 707a5ea..8bf5e9e 100644 --- a/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08.html +++ b/docs/html/interfacefplot__core_1_1operator_07_0a_0a_08.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -109,7 +109,7 @@

    Definition at line 293 of file fplot_core.f90.


    The documentation for this interface was generated from the following file:
    diff --git a/docs/html/interfacefplot__core_1_1operator_07_2_0a_08-members.html b/docs/html/interfacefplot__core_1_1operator_07_2_0a_08-members.html index 8cc07fd..df6b7cf 100644 --- a/docs/html/interfacefplot__core_1_1operator_07_2_0a_08-members.html +++ b/docs/html/interfacefplot__core_1_1operator_07_2_0a_08-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1operator_07_2_0a_08.html b/docs/html/interfacefplot__core_1_1operator_07_2_0a_08.html index 5062841..8916093 100644 --- a/docs/html/interfacefplot__core_1_1operator_07_2_0a_08.html +++ b/docs/html/interfacefplot__core_1_1operator_07_2_0a_08.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -109,7 +109,7 @@

    Definition at line 297 of file fplot_core.f90.


    The documentation for this interface was generated from the following file:
    diff --git a/docs/html/interfacefplot__core_1_1pa__get__string__result-members.html b/docs/html/interfacefplot__core_1_1pa__get__string__result-members.html index 5e2ef97..416d44e 100644 --- a/docs/html/interfacefplot__core_1_1pa__get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1pa__get__string__result-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1pa__get__string__result.html b/docs/html/interfacefplot__core_1_1pa__get__string__result.html index 708cee7..0f71494 100644 --- a/docs/html/interfacefplot__core_1_1pa__get__string__result.html +++ b/docs/html/interfacefplot__core_1_1pa__get__string__result.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1pd__get__string__result-members.html b/docs/html/interfacefplot__core_1_1pd__get__string__result-members.html index 6ecf144..a7e980f 100644 --- a/docs/html/interfacefplot__core_1_1pd__get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1pd__get__string__result-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1pd__get__string__result.html b/docs/html/interfacefplot__core_1_1pd__get__string__result.html index 6d7c0c7..a0456d9 100644 --- a/docs/html/interfacefplot__core_1_1pd__get__string__result.html +++ b/docs/html/interfacefplot__core_1_1pd__get__string__result.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1simplify__polyline-members.html b/docs/html/interfacefplot__core_1_1simplify__polyline-members.html index 3b152db..d5723d9 100644 --- a/docs/html/interfacefplot__core_1_1simplify__polyline-members.html +++ b/docs/html/interfacefplot__core_1_1simplify__polyline-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1simplify__polyline.html b/docs/html/interfacefplot__core_1_1simplify__polyline.html index 5593da0..d103936 100644 --- a/docs/html/interfacefplot__core_1_1simplify__polyline.html +++ b/docs/html/interfacefplot__core_1_1simplify__polyline.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -167,7 +167,7 @@

    Definition at line 7786 of file fplot_core.f90.


    The documentation for this interface was generated from the following file:
    diff --git a/docs/html/interfacefplot__core_1_1spd__get__int__value-members.html b/docs/html/interfacefplot__core_1_1spd__get__int__value-members.html index f7db5f4..afc5700 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__int__value-members.html +++ b/docs/html/interfacefplot__core_1_1spd__get__int__value-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1spd__get__int__value.html b/docs/html/interfacefplot__core_1_1spd__get__int__value.html index a6b40f6..854f8fe 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__int__value.html +++ b/docs/html/interfacefplot__core_1_1spd__get__int__value.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1spd__get__string__result-members.html b/docs/html/interfacefplot__core_1_1spd__get__string__result-members.html index c328cb7..7ed0d50 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1spd__get__string__result-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1spd__get__string__result.html b/docs/html/interfacefplot__core_1_1spd__get__string__result.html index 95e3e2f..90b3210 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__string__result.html +++ b/docs/html/interfacefplot__core_1_1spd__get__string__result.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1spd__get__value-members.html b/docs/html/interfacefplot__core_1_1spd__get__value-members.html index cdc2f64..ffc197f 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__value-members.html +++ b/docs/html/interfacefplot__core_1_1spd__get__value-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1spd__get__value.html b/docs/html/interfacefplot__core_1_1spd__get__value.html index 23415c2..14776f9 100644 --- a/docs/html/interfacefplot__core_1_1spd__get__value.html +++ b/docs/html/interfacefplot__core_1_1spd__get__value.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -144,7 +144,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1spd__set__value-members.html b/docs/html/interfacefplot__core_1_1spd__set__value-members.html index 22fb0bf..86b14ce 100644 --- a/docs/html/interfacefplot__core_1_1spd__set__value-members.html +++ b/docs/html/interfacefplot__core_1_1spd__set__value-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1spd__set__value.html b/docs/html/interfacefplot__core_1_1spd__set__value.html index 3710618..957e47d 100644 --- a/docs/html/interfacefplot__core_1_1spd__set__value.html +++ b/docs/html/interfacefplot__core_1_1spd__set__value.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -149,7 +149,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/interfacefplot__core_1_1term__get__string__result-members.html b/docs/html/interfacefplot__core_1_1term__get__string__result-members.html index d93a807..d7da644 100644 --- a/docs/html/interfacefplot__core_1_1term__get__string__result-members.html +++ b/docs/html/interfacefplot__core_1_1term__get__string__result-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/interfacefplot__core_1_1term__get__string__result.html b/docs/html/interfacefplot__core_1_1term__get__string__result.html index dc8e653..2cc2966 100644 --- a/docs/html/interfacefplot__core_1_1term__get__string__result.html +++ b/docs/html/interfacefplot__core_1_1term__get__string__result.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -139,7 +139,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/namespacefplot__core.html b/docs/html/namespacefplot__core.html index 61b6263..5bc6638 100644 --- a/docs/html/namespacefplot__core.html +++ b/docs/html/namespacefplot__core.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/namespacemembers.html b/docs/html/namespacemembers.html index 8856ba5..bad1849 100644 --- a/docs/html/namespacemembers.html +++ b/docs/html/namespacemembers.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/namespacemembers_vars.html b/docs/html/namespacemembers_vars.html index be6b1cf..3acbcf1 100644 --- a/docs/html/namespacemembers_vars.html +++ b/docs/html/namespacemembers_vars.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/namespaces.html b/docs/html/namespaces.html index fc6675b..2a0b373 100644 --- a/docs/html/namespaces.html +++ b/docs/html/namespaces.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1color-members.html b/docs/html/structfplot__core_1_1color-members.html index d6bbfcd..4fe68ee 100644 --- a/docs/html/structfplot__core_1_1color-members.html +++ b/docs/html/structfplot__core_1_1color-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1color.html b/docs/html/structfplot__core_1_1color.html index bbfbaa3..8a1c78a 100644 --- a/docs/html/structfplot__core_1_1color.html +++ b/docs/html/structfplot__core_1_1color.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -268,7 +268,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1colormap-members.html b/docs/html/structfplot__core_1_1colormap-members.html index e00914e..07ae4ee 100644 --- a/docs/html/structfplot__core_1_1colormap-members.html +++ b/docs/html/structfplot__core_1_1colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1colormap.html b/docs/html/structfplot__core_1_1colormap.html index faafcb7..5365967 100644 --- a/docs/html/structfplot__core_1_1colormap.html +++ b/docs/html/structfplot__core_1_1colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -549,7 +549,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1cool__colormap-members.html b/docs/html/structfplot__core_1_1cool__colormap-members.html index c41ed43..ea1a1a6 100644 --- a/docs/html/structfplot__core_1_1cool__colormap-members.html +++ b/docs/html/structfplot__core_1_1cool__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1cool__colormap.html b/docs/html/structfplot__core_1_1cool__colormap.html index f018da9..e0756aa 100644 --- a/docs/html/structfplot__core_1_1cool__colormap.html +++ b/docs/html/structfplot__core_1_1cool__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1custom__colormap-members.html b/docs/html/structfplot__core_1_1custom__colormap-members.html index 03dbac3..a970556 100644 --- a/docs/html/structfplot__core_1_1custom__colormap-members.html +++ b/docs/html/structfplot__core_1_1custom__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1custom__colormap.html b/docs/html/structfplot__core_1_1custom__colormap.html index dbf49f1..3c327c9 100644 --- a/docs/html/structfplot__core_1_1custom__colormap.html +++ b/docs/html/structfplot__core_1_1custom__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -322,7 +322,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1delaunay__tri__2d-members.html b/docs/html/structfplot__core_1_1delaunay__tri__2d-members.html index b52ac49..a7b5d42 100644 --- a/docs/html/structfplot__core_1_1delaunay__tri__2d-members.html +++ b/docs/html/structfplot__core_1_1delaunay__tri__2d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1delaunay__tri__2d.html b/docs/html/structfplot__core_1_1delaunay__tri__2d.html index d9069b4..cade37d 100644 --- a/docs/html/structfplot__core_1_1delaunay__tri__2d.html +++ b/docs/html/structfplot__core_1_1delaunay__tri__2d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -419,7 +419,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1delaunay__tri__surface-members.html b/docs/html/structfplot__core_1_1delaunay__tri__surface-members.html index 5ee335d..391552e 100644 --- a/docs/html/structfplot__core_1_1delaunay__tri__surface-members.html +++ b/docs/html/structfplot__core_1_1delaunay__tri__surface-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1delaunay__tri__surface.html b/docs/html/structfplot__core_1_1delaunay__tri__surface.html index 4d28941..f3f2c65 100644 --- a/docs/html/structfplot__core_1_1delaunay__tri__surface.html +++ b/docs/html/structfplot__core_1_1delaunay__tri__surface.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -352,7 +352,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1earth__colormap-members.html b/docs/html/structfplot__core_1_1earth__colormap-members.html index ea96cff..a839501 100644 --- a/docs/html/structfplot__core_1_1earth__colormap-members.html +++ b/docs/html/structfplot__core_1_1earth__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1earth__colormap.html b/docs/html/structfplot__core_1_1earth__colormap.html index b23859f..33bb3ab 100644 --- a/docs/html/structfplot__core_1_1earth__colormap.html +++ b/docs/html/structfplot__core_1_1earth__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1filled__plot__data-members.html b/docs/html/structfplot__core_1_1filled__plot__data-members.html index 8c2b7d4..cf3b50a 100644 --- a/docs/html/structfplot__core_1_1filled__plot__data-members.html +++ b/docs/html/structfplot__core_1_1filled__plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1filled__plot__data.html b/docs/html/structfplot__core_1_1filled__plot__data.html index e833841..0871c85 100644 --- a/docs/html/structfplot__core_1_1filled__plot__data.html +++ b/docs/html/structfplot__core_1_1filled__plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -409,7 +409,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1grey__colormap-members.html b/docs/html/structfplot__core_1_1grey__colormap-members.html index 6ffcfd0..b8ec19b 100644 --- a/docs/html/structfplot__core_1_1grey__colormap-members.html +++ b/docs/html/structfplot__core_1_1grey__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1grey__colormap.html b/docs/html/structfplot__core_1_1grey__colormap.html index be802ae..18c11ac 100644 --- a/docs/html/structfplot__core_1_1grey__colormap.html +++ b/docs/html/structfplot__core_1_1grey__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1hot__colormap-members.html b/docs/html/structfplot__core_1_1hot__colormap-members.html index da68931..0a75840 100644 --- a/docs/html/structfplot__core_1_1hot__colormap-members.html +++ b/docs/html/structfplot__core_1_1hot__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1hot__colormap.html b/docs/html/structfplot__core_1_1hot__colormap.html index 5667b59..b288dca 100644 --- a/docs/html/structfplot__core_1_1hot__colormap.html +++ b/docs/html/structfplot__core_1_1hot__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1latex__terminal-members.html b/docs/html/structfplot__core_1_1latex__terminal-members.html index 907a897..796f020 100644 --- a/docs/html/structfplot__core_1_1latex__terminal-members.html +++ b/docs/html/structfplot__core_1_1latex__terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1latex__terminal.html b/docs/html/structfplot__core_1_1latex__terminal.html index 3410220..94174b3 100644 --- a/docs/html/structfplot__core_1_1latex__terminal.html +++ b/docs/html/structfplot__core_1_1latex__terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -379,7 +379,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1legend-members.html b/docs/html/structfplot__core_1_1legend-members.html index 55c22f3..c4bbb89 100644 --- a/docs/html/structfplot__core_1_1legend-members.html +++ b/docs/html/structfplot__core_1_1legend-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1legend.html b/docs/html/structfplot__core_1_1legend.html index d1d30bf..93e65bd 100644 --- a/docs/html/structfplot__core_1_1legend.html +++ b/docs/html/structfplot__core_1_1legend.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -744,7 +744,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1multiplot-members.html b/docs/html/structfplot__core_1_1multiplot-members.html index 1a3b53b..f553ccd 100644 --- a/docs/html/structfplot__core_1_1multiplot-members.html +++ b/docs/html/structfplot__core_1_1multiplot-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1multiplot.html b/docs/html/structfplot__core_1_1multiplot.html index 88e84f8..c03b9d7 100644 --- a/docs/html/structfplot__core_1_1multiplot.html +++ b/docs/html/structfplot__core_1_1multiplot.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -810,7 +810,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1parula__colormap-members.html b/docs/html/structfplot__core_1_1parula__colormap-members.html index 050496c..05c0dcb 100644 --- a/docs/html/structfplot__core_1_1parula__colormap-members.html +++ b/docs/html/structfplot__core_1_1parula__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1parula__colormap.html b/docs/html/structfplot__core_1_1parula__colormap.html index 3f8d96e..fb7797e 100644 --- a/docs/html/structfplot__core_1_1parula__colormap.html +++ b/docs/html/structfplot__core_1_1parula__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot-members.html b/docs/html/structfplot__core_1_1plot-members.html index e534957..faa4189 100644 --- a/docs/html/structfplot__core_1_1plot-members.html +++ b/docs/html/structfplot__core_1_1plot-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot.html b/docs/html/structfplot__core_1_1plot.html index d66202e..22b249e 100644 --- a/docs/html/structfplot__core_1_1plot.html +++ b/docs/html/structfplot__core_1_1plot.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -1796,7 +1796,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__2d-members.html b/docs/html/structfplot__core_1_1plot__2d-members.html index 7905b2a..04e369f 100644 --- a/docs/html/structfplot__core_1_1plot__2d-members.html +++ b/docs/html/structfplot__core_1_1plot__2d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__2d.html b/docs/html/structfplot__core_1_1plot__2d.html index 937f036..f954469 100644 --- a/docs/html/structfplot__core_1_1plot__2d.html +++ b/docs/html/structfplot__core_1_1plot__2d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -746,7 +746,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__3d-members.html b/docs/html/structfplot__core_1_1plot__3d-members.html index e70d691..a98b6ce 100644 --- a/docs/html/structfplot__core_1_1plot__3d-members.html +++ b/docs/html/structfplot__core_1_1plot__3d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__3d.html b/docs/html/structfplot__core_1_1plot__3d.html index b4439b1..5ed861d 100644 --- a/docs/html/structfplot__core_1_1plot__3d.html +++ b/docs/html/structfplot__core_1_1plot__3d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -997,7 +997,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__arrow-members.html b/docs/html/structfplot__core_1_1plot__arrow-members.html index c144e31..e7bb32b 100644 --- a/docs/html/structfplot__core_1_1plot__arrow-members.html +++ b/docs/html/structfplot__core_1_1plot__arrow-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__arrow.html b/docs/html/structfplot__core_1_1plot__arrow.html index 4c19383..0ffaa47 100644 --- a/docs/html/structfplot__core_1_1plot__arrow.html +++ b/docs/html/structfplot__core_1_1plot__arrow.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -1628,7 +1628,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__axis-members.html b/docs/html/structfplot__core_1_1plot__axis-members.html index dde1450..7f20034 100644 --- a/docs/html/structfplot__core_1_1plot__axis-members.html +++ b/docs/html/structfplot__core_1_1plot__axis-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__axis.html b/docs/html/structfplot__core_1_1plot__axis.html index d481e4d..2533127 100644 --- a/docs/html/structfplot__core_1_1plot__axis.html +++ b/docs/html/structfplot__core_1_1plot__axis.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -912,7 +912,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__bar-members.html b/docs/html/structfplot__core_1_1plot__bar-members.html index ae6a25c..8b2cada 100644 --- a/docs/html/structfplot__core_1_1plot__bar-members.html +++ b/docs/html/structfplot__core_1_1plot__bar-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__bar.html b/docs/html/structfplot__core_1_1plot__bar.html index 94c943c..d0f0adf 100644 --- a/docs/html/structfplot__core_1_1plot__bar.html +++ b/docs/html/structfplot__core_1_1plot__bar.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -446,7 +446,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data-members.html b/docs/html/structfplot__core_1_1plot__data-members.html index a795687..1c38a0f 100644 --- a/docs/html/structfplot__core_1_1plot__data-members.html +++ b/docs/html/structfplot__core_1_1plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data.html b/docs/html/structfplot__core_1_1plot__data.html index 9b9fa19..6988b44 100644 --- a/docs/html/structfplot__core_1_1plot__data.html +++ b/docs/html/structfplot__core_1_1plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -261,7 +261,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__2d-members.html b/docs/html/structfplot__core_1_1plot__data__2d-members.html index b02ac5a..48eece9 100644 --- a/docs/html/structfplot__core_1_1plot__data__2d-members.html +++ b/docs/html/structfplot__core_1_1plot__data__2d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__2d.html b/docs/html/structfplot__core_1_1plot__data__2d.html index 01be9fa..8023b97 100644 --- a/docs/html/structfplot__core_1_1plot__data__2d.html +++ b/docs/html/structfplot__core_1_1plot__data__2d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -951,7 +951,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__3d-members.html b/docs/html/structfplot__core_1_1plot__data__3d-members.html index f6d7249..3ec7608 100644 --- a/docs/html/structfplot__core_1_1plot__data__3d-members.html +++ b/docs/html/structfplot__core_1_1plot__data__3d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__3d.html b/docs/html/structfplot__core_1_1plot__data__3d.html index a2da86b..5855812 100644 --- a/docs/html/structfplot__core_1_1plot__data__3d.html +++ b/docs/html/structfplot__core_1_1plot__data__3d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -824,7 +824,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__bar-members.html b/docs/html/structfplot__core_1_1plot__data__bar-members.html index 023250f..4c42353 100644 --- a/docs/html/structfplot__core_1_1plot__data__bar-members.html +++ b/docs/html/structfplot__core_1_1plot__data__bar-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__bar.html b/docs/html/structfplot__core_1_1plot__data__bar.html index 9b446a0..9e4d08f 100644 --- a/docs/html/structfplot__core_1_1plot__data__bar.html +++ b/docs/html/structfplot__core_1_1plot__data__bar.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -799,7 +799,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__colored-members.html b/docs/html/structfplot__core_1_1plot__data__colored-members.html index e90cc26..66d4cb4 100644 --- a/docs/html/structfplot__core_1_1plot__data__colored-members.html +++ b/docs/html/structfplot__core_1_1plot__data__colored-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__colored.html b/docs/html/structfplot__core_1_1plot__data__colored.html index b3eea88..93fd0de 100644 --- a/docs/html/structfplot__core_1_1plot__data__colored.html +++ b/docs/html/structfplot__core_1_1plot__data__colored.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -340,7 +340,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__error__bars-members.html b/docs/html/structfplot__core_1_1plot__data__error__bars-members.html index 314f405..68aec80 100644 --- a/docs/html/structfplot__core_1_1plot__data__error__bars-members.html +++ b/docs/html/structfplot__core_1_1plot__data__error__bars-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__error__bars.html b/docs/html/structfplot__core_1_1plot__data__error__bars.html index 52aefd1..f2738c1 100644 --- a/docs/html/structfplot__core_1_1plot__data__error__bars.html +++ b/docs/html/structfplot__core_1_1plot__data__error__bars.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -855,7 +855,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__histogram-members.html b/docs/html/structfplot__core_1_1plot__data__histogram-members.html index 965aece..d4146a9 100644 --- a/docs/html/structfplot__core_1_1plot__data__histogram-members.html +++ b/docs/html/structfplot__core_1_1plot__data__histogram-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__histogram.html b/docs/html/structfplot__core_1_1plot__data__histogram.html index e1156f5..25425d3 100644 --- a/docs/html/structfplot__core_1_1plot__data__histogram.html +++ b/docs/html/structfplot__core_1_1plot__data__histogram.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -438,7 +438,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__data__tri__2d-members.html b/docs/html/structfplot__core_1_1plot__data__tri__2d-members.html index a5ddefc..70590fd 100644 --- a/docs/html/structfplot__core_1_1plot__data__tri__2d-members.html +++ b/docs/html/structfplot__core_1_1plot__data__tri__2d-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__data__tri__2d.html b/docs/html/structfplot__core_1_1plot__data__tri__2d.html index 7a0b002..e36deab 100644 --- a/docs/html/structfplot__core_1_1plot__data__tri__2d.html +++ b/docs/html/structfplot__core_1_1plot__data__tri__2d.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -478,7 +478,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__label-members.html b/docs/html/structfplot__core_1_1plot__label-members.html index 2f64b16..5f7e128 100644 --- a/docs/html/structfplot__core_1_1plot__label-members.html +++ b/docs/html/structfplot__core_1_1plot__label-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__label.html b/docs/html/structfplot__core_1_1plot__label.html index b0a6d90..bad3f3b 100644 --- a/docs/html/structfplot__core_1_1plot__label.html +++ b/docs/html/structfplot__core_1_1plot__label.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -501,7 +501,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__object-members.html b/docs/html/structfplot__core_1_1plot__object-members.html index d5a0a40..f599355 100644 --- a/docs/html/structfplot__core_1_1plot__object-members.html +++ b/docs/html/structfplot__core_1_1plot__object-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__object.html b/docs/html/structfplot__core_1_1plot__object.html index 3dcb385..4d2d77f 100644 --- a/docs/html/structfplot__core_1_1plot__object.html +++ b/docs/html/structfplot__core_1_1plot__object.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -159,7 +159,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1plot__polar-members.html b/docs/html/structfplot__core_1_1plot__polar-members.html index f579377..db89b97 100644 --- a/docs/html/structfplot__core_1_1plot__polar-members.html +++ b/docs/html/structfplot__core_1_1plot__polar-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1plot__polar.html b/docs/html/structfplot__core_1_1plot__polar.html index 424478a..d0a4ff7 100644 --- a/docs/html/structfplot__core_1_1plot__polar.html +++ b/docs/html/structfplot__core_1_1plot__polar.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -780,7 +780,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1png__terminal-members.html b/docs/html/structfplot__core_1_1png__terminal-members.html index 8f4e07d..2b9e779 100644 --- a/docs/html/structfplot__core_1_1png__terminal-members.html +++ b/docs/html/structfplot__core_1_1png__terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1png__terminal.html b/docs/html/structfplot__core_1_1png__terminal.html index 02bbce9..645b6bf 100644 --- a/docs/html/structfplot__core_1_1png__terminal.html +++ b/docs/html/structfplot__core_1_1png__terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -379,7 +379,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1qt__terminal-members.html b/docs/html/structfplot__core_1_1qt__terminal-members.html index dd8439f..6f91bf1 100644 --- a/docs/html/structfplot__core_1_1qt__terminal-members.html +++ b/docs/html/structfplot__core_1_1qt__terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1qt__terminal.html b/docs/html/structfplot__core_1_1qt__terminal.html index 026981d..c615c38 100644 --- a/docs/html/structfplot__core_1_1qt__terminal.html +++ b/docs/html/structfplot__core_1_1qt__terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -257,7 +257,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1rainbow__colormap-members.html b/docs/html/structfplot__core_1_1rainbow__colormap-members.html index 81f9e5f..97d7976 100644 --- a/docs/html/structfplot__core_1_1rainbow__colormap-members.html +++ b/docs/html/structfplot__core_1_1rainbow__colormap-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1rainbow__colormap.html b/docs/html/structfplot__core_1_1rainbow__colormap.html index 8b9f1a8..9bfba8b 100644 --- a/docs/html/structfplot__core_1_1rainbow__colormap.html +++ b/docs/html/structfplot__core_1_1rainbow__colormap.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -202,7 +202,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1scatter__plot__data-members.html b/docs/html/structfplot__core_1_1scatter__plot__data-members.html index 8e13393..de56eea 100644 --- a/docs/html/structfplot__core_1_1scatter__plot__data-members.html +++ b/docs/html/structfplot__core_1_1scatter__plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1scatter__plot__data.html b/docs/html/structfplot__core_1_1scatter__plot__data.html index cbffe32..7260b70 100644 --- a/docs/html/structfplot__core_1_1scatter__plot__data.html +++ b/docs/html/structfplot__core_1_1scatter__plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -1407,7 +1407,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1surface__plot-members.html b/docs/html/structfplot__core_1_1surface__plot-members.html index 69d132f..573c0d0 100644 --- a/docs/html/structfplot__core_1_1surface__plot-members.html +++ b/docs/html/structfplot__core_1_1surface__plot-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1surface__plot.html b/docs/html/structfplot__core_1_1surface__plot.html index 7feeb1c..655b70f 100644 --- a/docs/html/structfplot__core_1_1surface__plot.html +++ b/docs/html/structfplot__core_1_1surface__plot.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -1035,7 +1035,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1surface__plot__data-members.html b/docs/html/structfplot__core_1_1surface__plot__data-members.html index 8f5faa6..6ec1871 100644 --- a/docs/html/structfplot__core_1_1surface__plot__data-members.html +++ b/docs/html/structfplot__core_1_1surface__plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1surface__plot__data.html b/docs/html/structfplot__core_1_1surface__plot__data.html index bc35a5e..631843f 100644 --- a/docs/html/structfplot__core_1_1surface__plot__data.html +++ b/docs/html/structfplot__core_1_1surface__plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -629,7 +629,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1terminal-members.html b/docs/html/structfplot__core_1_1terminal-members.html index 1e7d9dd..9713a6c 100644 --- a/docs/html/structfplot__core_1_1terminal-members.html +++ b/docs/html/structfplot__core_1_1terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1terminal.html b/docs/html/structfplot__core_1_1terminal.html index 88ab1df..9c37a89 100644 --- a/docs/html/structfplot__core_1_1terminal.html +++ b/docs/html/structfplot__core_1_1terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -720,7 +720,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1tri__surface__plot__data-members.html b/docs/html/structfplot__core_1_1tri__surface__plot__data-members.html index a1f1171..34127f0 100644 --- a/docs/html/structfplot__core_1_1tri__surface__plot__data-members.html +++ b/docs/html/structfplot__core_1_1tri__surface__plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1tri__surface__plot__data.html b/docs/html/structfplot__core_1_1tri__surface__plot__data.html index 071da58..8575356 100644 --- a/docs/html/structfplot__core_1_1tri__surface__plot__data.html +++ b/docs/html/structfplot__core_1_1tri__surface__plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -402,7 +402,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1vector__field__plot__data-members.html b/docs/html/structfplot__core_1_1vector__field__plot__data-members.html index e70e8f5..ce1a427 100644 --- a/docs/html/structfplot__core_1_1vector__field__plot__data-members.html +++ b/docs/html/structfplot__core_1_1vector__field__plot__data-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1vector__field__plot__data.html b/docs/html/structfplot__core_1_1vector__field__plot__data.html index 5636d0f..ff56677 100644 --- a/docs/html/structfplot__core_1_1vector__field__plot__data.html +++ b/docs/html/structfplot__core_1_1vector__field__plot__data.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -491,7 +491,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1windows__terminal-members.html b/docs/html/structfplot__core_1_1windows__terminal-members.html index f8474fc..12edf9d 100644 --- a/docs/html/structfplot__core_1_1windows__terminal-members.html +++ b/docs/html/structfplot__core_1_1windows__terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1windows__terminal.html b/docs/html/structfplot__core_1_1windows__terminal.html index e06dba7..0ba209b 100644 --- a/docs/html/structfplot__core_1_1windows__terminal.html +++ b/docs/html/structfplot__core_1_1windows__terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -257,7 +257,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1wxt__terminal-members.html b/docs/html/structfplot__core_1_1wxt__terminal-members.html index 6c28026..b978125 100644 --- a/docs/html/structfplot__core_1_1wxt__terminal-members.html +++ b/docs/html/structfplot__core_1_1wxt__terminal-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1wxt__terminal.html b/docs/html/structfplot__core_1_1wxt__terminal.html index 49c87a9..efcd674 100644 --- a/docs/html/structfplot__core_1_1wxt__terminal.html +++ b/docs/html/structfplot__core_1_1wxt__terminal.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -257,7 +257,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1x__axis-members.html b/docs/html/structfplot__core_1_1x__axis-members.html index c733b4e..c2dec4e 100644 --- a/docs/html/structfplot__core_1_1x__axis-members.html +++ b/docs/html/structfplot__core_1_1x__axis-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1x__axis.html b/docs/html/structfplot__core_1_1x__axis.html index 7345aac..dd3fc04 100644 --- a/docs/html/structfplot__core_1_1x__axis.html +++ b/docs/html/structfplot__core_1_1x__axis.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -267,7 +267,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1y2__axis-members.html b/docs/html/structfplot__core_1_1y2__axis-members.html index c9ad741..bda99d0 100644 --- a/docs/html/structfplot__core_1_1y2__axis-members.html +++ b/docs/html/structfplot__core_1_1y2__axis-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1y2__axis.html b/docs/html/structfplot__core_1_1y2__axis.html index d8eb45c..a77f83c 100644 --- a/docs/html/structfplot__core_1_1y2__axis.html +++ b/docs/html/structfplot__core_1_1y2__axis.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -267,7 +267,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1y__axis-members.html b/docs/html/structfplot__core_1_1y__axis-members.html index ef84925..855b3f4 100644 --- a/docs/html/structfplot__core_1_1y__axis-members.html +++ b/docs/html/structfplot__core_1_1y__axis-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1y__axis.html b/docs/html/structfplot__core_1_1y__axis.html index e77caf0..cd070e2 100644 --- a/docs/html/structfplot__core_1_1y__axis.html +++ b/docs/html/structfplot__core_1_1y__axis.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -267,7 +267,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90
  • diff --git a/docs/html/structfplot__core_1_1z__axis-members.html b/docs/html/structfplot__core_1_1z__axis-members.html index 964a792..4916d19 100644 --- a/docs/html/structfplot__core_1_1z__axis-members.html +++ b/docs/html/structfplot__core_1_1z__axis-members.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    diff --git a/docs/html/structfplot__core_1_1z__axis.html b/docs/html/structfplot__core_1_1z__axis.html index c90fd81..f200404 100644 --- a/docs/html/structfplot__core_1_1z__axis.html +++ b/docs/html/structfplot__core_1_1z__axis.html @@ -27,7 +27,7 @@ -
    fplot 1.7.0 +
    fplot 1.7.1
    A Fortran library providing a convenient interface for plotting with Gnuplot.
    @@ -267,7 +267,7 @@

    fplot_core.f90 +
  • D:/Code/fplot-1/src/fplot_core.f90