File bench_edge_face_intersections.h
File List > benchmark > metrics > implementations > bench_edge_face_intersections.h
Go to the documentation of this file
#pragma once
#include "../Metric.h"
class EdgeFaceIntersection : public Metric {
public:
EdgeFaceIntersection() : Metric("EdgeFaceIntersects") {}
~EdgeFaceIntersection() = default;
void compute(const Mesh&, const Mesh&, benchmark::State&) const override;
};