I have two identical (but differently named) C structures:
typedef struct { double x; double y; double z; } CMAcceleration; typedef struc
Why dont you use.
typedef CMAcceleration Vector3d;
(instead of creating a whole new structure)
in that case vector = acceleration; compiles just fine.
vector = acceleration;