Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
yt-project
GitHub Repository: yt-project/yt
Path: blob/main/doc/source/analyzing/_static/axes.h
928 views
1
typedef struct structParticleCollection {
2
long npart;
3
double *xpos;
4
double *ypos;
5
double *zpos;
6
} ParticleCollection;
7
8
void calculate_axes(ParticleCollection *part,
9
double *ax1, double *ax2, double *ax3);
10
11