mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-05 07:41:11 +00:00
Renamed directory mytools to pipeline_tools
This commit is contained in:
parent
b5ee1cc7a6
commit
f6fae36329
14 changed files with 0 additions and 0 deletions
24
pipeline_tools/particleInfo.hpp
Normal file
24
pipeline_tools/particleInfo.hpp
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef _PARTICLE_INFO_HEADER_HPP
|
||||
#define _PARTICLE_INFO_HEADER_HPP
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
struct ParticleData {
|
||||
float x, y, z;
|
||||
};
|
||||
|
||||
typedef std::vector<ParticleData> ParticleVector;
|
||||
|
||||
struct ParticleInfo
|
||||
{
|
||||
ParticleVector particles;
|
||||
float ranges[3][2];
|
||||
float length[3];
|
||||
};
|
||||
|
||||
bool loadParticleInfo(ParticleInfo& info,
|
||||
const std::string& particles,
|
||||
const std::string& extra_info);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue