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_UCD_TRANS_H_INCLUDED
7 #define HECMW_VIS_UCD_TRANS_H_INCLUDED
8 
9 #include "hecmw_struct.h"
10 #include "hecmw_result.h"
11 #include "hecmw_util.h"
12 #include "hecmw_vis_ray_trace.h"
13 
14 void transform_ucd_pvr(struct hecmwST_result_data *data, double *node1,
15                        struct hecmwST_local_mesh *mesh, Parameter_vr *vr,
16                        int my_rank, int pe_size, HECMW_Comm VIS_COMM,
17                        double *voxel_dxyz, double *voxel_orig_xyz, int *level,
18                        int *voxel_n_neighbor_pe, int **voxel_neighbor_pe,
19                        int voxel_on, int display_range_on, int init_flag,
20                        int num_of_pvr);
21 
22 #endif /* HECMW_VIS_UCD_TRANS_H_INCLUDED */
23