extract explicit mesh with topology information from implicit surfaces with boolean operations, and do surface/volume integrating on them.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
475 B

#pragma once
#include <vector>
#include "detail/small_vector_base.hpp"
namespace detail
{
template <typename T>
using stl_vector_allocator_bind = std::vector<T>;
} // namespace detail
template <typename T, std::size_t N = 16>
using small_vector = detail::small_vector_base<detail::stl_vector_allocator_bind, T, N>;
namespace detail
{
template <size_t N>
struct small_vector_bind {
template <typename T>
using type = small_vector<T, N>;
};
} // namespace detail