/* * pyramid.h * * Created on: 14.03.2013 * Author: trifon */ #ifndef PYRAMID_H_ #define PYRAMID_H_ #include "point3d.h" class Pyramid { private: double a, b, c; public: Pyramid(); Pyramid(double,double,double); bool isInside(Point3D) const; // за домашно: селектори }; #endif /* PYRAMID_H_ */