https://github.com/MOHICANS-project/2CoBel
Raw File
Tip revision: 82dc898adeba3f38be20cfb652dafe8424832fd3 authored by emi aldea on 08 June 2020, 18:58:24 UTC
compilation error with newer g++
Tip revision: 82dc898
ClipperPolygonPlotter.h
//
// Created by nicola on 22/03/18.
//

#ifndef FUSION_CLIPPERPOLYGONPLOTTER_H
#define FUSION_CLIPPERPOLYGONPLOTTER_H


#include <memory>
#include "../focal_elements/FocalElement.h"


class ClipperPolygonPlotter {

public:
    /**
     * Plot Clipper2DFocalElements with matplotlib wrapper.
     * @param elems Focal elements array.
     */
    void plotClipperFocalElements(std::vector<std::reference_wrapper<FocalElement>> &elems);

};


#endif //FUSION_CLIPPERPOLYGONPLOTTER_H
back to top