Deanonymise struct types

Former-commit-id: 1df0bbb2bb903cf28e5e5f4a890bda4f9e351182
This commit is contained in:
Marek Nečada 2018-09-19 09:17:04 +03:00
parent 1f7ac7c1c1
commit 1cbaf2d993
1 changed files with 7 additions and 7 deletions

View File

@ -136,33 +136,33 @@ typedef enum {
} qpms_bessel_t;
// coordinate system types
typedef struct {
typedef struct cart3_t {
double x, y, z;
} cart3_t;
typedef struct {
typedef struct ccart3_t {
complex double x, y, z;
} ccart3_t;
typedef struct {
typedef struct cart2_t {
double x, y;
} cart2_t;
typedef struct {
typedef struct sph_t {
double r, theta, phi;
} sph_t;
typedef struct { // Do I really need this???
typedef struct csph_t { // Do I really need this???
complex double r;
double theta, phi;
} csph_t;
// complex vector components in local spherical basis
typedef struct {
typedef struct csphvec_t {
complex double rc, thetac, phic;
} csphvec_t;
typedef struct {
typedef struct pol_t {
double r, phi;
} pol_t;