PeriDyno 1.0.0
Loading...
Searching...
No Matches
gmsh_helper.h
Go to the documentation of this file.
1#pragma once
2#include <vector>
3#include <set>
4#include "Vector.h"
6
7namespace dyno{
8
9
10 class Gmsh {
11
12 public:
13 void loadFile(std::string filename);
14
15
16 std::vector<Vec3f> m_points;
17 std::vector<TopologyModule::Tetrahedron> m_tets;
18 };
19
20}
std::vector< TopologyModule::Tetrahedron > m_tets
Definition gmsh_helper.h:17
void loadFile(std::string filename)
std::vector< Vec3f > m_points
Definition gmsh_helper.h:16
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:25