Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Shapes/BaseShapes_impl.hpp

    re38447 rc6f395  
    1313class Sphere_impl : public Shape_impl {
    1414  virtual bool isInside(const Vector &point);
     15  virtual bool isOnSurface(const Vector &point);
     16  virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);
     17  virtual LineSegmentSet getLineIntersections(const Line&);
     18  virtual std::string toString();
    1519};
    1620
    1721class Cuboid_impl : public Shape_impl {
    1822  virtual bool isInside(const Vector &point);
     23  virtual bool isOnSurface(const Vector &point);
     24  virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);
     25  virtual LineSegmentSet getLineIntersections(const Line&);
     26  virtual std::string toString();
    1927};
    2028
Note: See TracChangeset for help on using the changeset viewer.