1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 
6 #ifndef HECMW_VIS_TETRA_INTERSECT_H_INCLUDED
7 #define HECMW_VIS_TETRA_INTERSECT_H_INCLUDED
8 
9 #include "hecmw_struct.h"
10 #include "hecmw_result.h"
11 #include "hecmw_vis_SF_geom.h"
12 
13 extern int get_tetra_data(Surface *sff, struct hecmwST_local_mesh *mesh,
14                           struct hecmwST_result_data *data, int elemID,
15                           Tetra *tetra, int tn_component);
16 extern void find_intersection_tetra(Tetra *tetra, double isovalue,
17                                     Tetra_point *tetra_point,
18                                     Head_patch_tetra *head_patch_tetra,
19                                     Hash_vertex *vertex_hash_table);
20 
21 #endif /* HECMW_VIS_TETRA_INTERSECT_H_INCLUDED */
22