mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-05 07:41:11 +00:00
9 lines
191 B
C++
9 lines
191 B
C++
#ifndef __CONTOUR_PIXELS_HPP
|
|
#define __CONTOUR_PIXELS_HPP
|
|
|
|
#include <vector>
|
|
#include <healpix_map.h>
|
|
|
|
void computeContourPixels(Healpix_Map<float>& map, std::vector<int> contour);
|
|
|
|
#endif
|