1#ifndef __CS_MESH_INTERSECT_H__
2#define __CS_MESH_INTERSECT_H__
#define BEGIN_C_DECLS
Definition: cs_defs.h:542
double cs_real_t
Floating-point value.
Definition: cs_defs.h:342
cs_real_t cs_real_3_t[3]
vector of 3 floating-point values
Definition: cs_defs.h:359
#define END_C_DECLS
Definition: cs_defs.h:543
int cs_lnum_t
local mesh entity id
Definition: cs_defs.h:335
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, cs_real_3_t **seg_c_cen)
Select cells cut by a line composed of segments.
Definition: cs_mesh_intersect.cpp:435
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.cpp: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.cpp:796