MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / point3d

Method point3d

code/geometry/primitives3d.cpp:6–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4struct point3d {
5 double x, y, z;
6 point3d() : x(0), y(0), z(0) {}
7 point3d(double _x, double _y, double _z)
8 : x(_x), y(_y), z(_z) {}
9 point3d operator+(P(p)) const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected