ray2mesh.h
来自「用于2维的射线追踪」· C头文件 代码 · 共 30 行
H
30 行
#ifndef _RAY2MESH_H_#define _RAY2MESH_H_#include <ray/ray3D.h>#include <mesh/cell.h>#include <mesh/mesh.h>/** \brief computes rays contributions into a mesh */struct cell_info_t ****ray2mesh2( struct ray3D_t *ray, long int rayid, const struct mesh_t *mesh, struct cell_info_t ****cell_info, FILE *matrix_length_fd);struct coord_geo_t *find_interpolated_node_coord (const struct mesh_t *mesh, struct coord_geo_t *prev_p, struct coord_geo_t *p, struct coord_z3_t *prev_cell_id, struct coord_z3_t *middle_cell_id);/** \brief computes rays contributions into a mesh */struct cell_info_t ****ray2mesh( struct ray3D_t *ray, long int rayid, const struct mesh_t *mesh, struct cell_info_t ****cell_info, FILE *matrix_length_fd);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?