CustomMatPlot icon indicating copy to clipboard operation
CustomMatPlot copied to clipboard

Plot library for the JUCE Framework

Results 5 CustomMatPlot issues
Sort by recently updated
recently updated
newest added

There are situations where divisions by 0 occur in the library which cause JUCE assertions, `inf` or `NaN` values which could be prevented by some trivial checks. Take for example...

The static library should be compiled with -fPIC (Linux). To do so, you should add in your CMakeLists.txt after line 46 (add_library) set_property(TARGET ${PROJECT_NAME} PROPERTY POSITION_INDEPENDENT_CODE ON)

1. std::min, std::max ambiguous: cast was needed e.g. here: const auto padded_end = std::min((const int)max_size, (const int)(raw_end + PADDING_POINTS)); 2. Class Observable is missing the == Operator: add bool operator==(const...