1 #ifndef __CS_MESH_INTERSECT_H__
2 #define __CS_MESH_INTERSECT_H__
#define BEGIN_C_DECLS
Definition: cs_defs.h:509
double cs_real_t
Floating-point value.
Definition: cs_defs.h:319
#define END_C_DECLS
Definition: cs_defs.h:510
int cs_lnum_t
local mesh entity id
Definition: cs_defs.h:313
void cs_mesh_intersect_segment_cell_select(void *input, cs_lnum_t *n_cells, cs_lnum_t **cell_ids)
Select cells cut by a given segment.
Definition: cs_mesh_intersect.c:268
void cs_mesh_intersect_polyline_map(cs_lnum_t n_points, const cs_real_t point_coords[], cs_real_t min_fraction, cs_lnum_t **seg_cell_idx, cs_lnum_t **seg_cell, cs_real_t **seg_cell_fraction)
Map a polyline of segments to the local mesh.
Definition: cs_mesh_intersect.c:740
void cs_mesh_intersect_polyline_cell_select(void *input, cs_lnum_t n_points, cs_lnum_t *n_cells, cs_lnum_t **cell_ids, cs_real_t **seg_c_len)
Select cells cut by a line composed of segments.
Definition: cs_mesh_intersect.c:433