Changes in src/Shapes/BaseShapes_impl.hpp [cfda65:e38447]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Shapes/BaseShapes_impl.hpp
rcfda65 re38447 13 13 class Sphere_impl : public Shape_impl { 14 14 virtual bool isInside(const Vector &point); 15 virtual bool isOnSurface(const Vector &point);16 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);17 virtual std::string toString();18 15 }; 19 16 20 17 class Cuboid_impl : public Shape_impl { 21 18 virtual bool isInside(const Vector &point); 22 virtual bool isOnSurface(const Vector &point);23 virtual Vector getNormal(const Vector &point) throw(NotOnSurfaceException);24 virtual std::string toString();25 19 }; 26 20
Note:
See TracChangeset
for help on using the changeset viewer.