PolyFEM
Loading...
Searching...
No Matches
EdgeSampler.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <Eigen/Dense>
4
5namespace polyfem
6{
7 namespace utils
8 {
10 {
11 public:
12 static void sample_2d_simplex(const int resolution, Eigen::MatrixXd &samples);
13 static void sample_2d_cube(const int resolution, Eigen::MatrixXd &samples);
14
15 static void sample_3d_simplex(const int resolution, Eigen::MatrixXd &samples);
16 static void sample_3d_cube(const int resolution, Eigen::MatrixXd &samples);
17 };
18 } // namespace utils
19} // namespace polyfem
static void sample_3d_simplex(const int resolution, Eigen::MatrixXd &samples)
static void sample_3d_cube(const int resolution, Eigen::MatrixXd &samples)
static void sample_2d_cube(const int resolution, Eigen::MatrixXd &samples)
static void sample_2d_simplex(const int resolution, Eigen::MatrixXd &samples)