#ifndef CONTOURPY_MPL_2005_H
#define CONTOURPY_MPL_2005_H
#include "contour_generator.h"
#include "mpl2005_original.h"
namespace contourpy {
class Mpl2005ContourGenerator : public ContourGenerator
{
public:
Mpl2005ContourGenerator(
const CoordinateArray& x, const CoordinateArray& y, const CoordinateArray& z,
const MaskArray& mask, index_t x_chunk_size, index_t y_chunk_size);
~Mpl2005ContourGenerator();
py::tuple filled(const double& lower_level, const double& upper_level);
py::tuple get_chunk_count() const;
py::tuple get_chunk_size() const;
py::tuple lines(const double& level);
private:
CoordinateArray _x, _y, _z;
Csite *_site;
};
}
#endif