MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / complex

Method complex

src/ap.h:116–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114{
115public:
116 complex():x(0.0),y(0.0){};
117 complex(const double &_x):x(_x),y(0.0){};
118 complex(const double &_x, const double &_y):x(_x),y(_y){};
119 complex(const complex &z):x(z.x),y(z.y){};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected