Changes in src/Shapes/BaseShapes_impl.hpp [e38447:cfda65]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Shapes/BaseShapes_impl.hpp
re38447 rcfda65 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(); 15 18 }; 16 19 17 20 class Cuboid_impl : public Shape_impl { 18 21 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(); 19 25 }; 20 26
Note:
See TracChangeset
for help on using the changeset viewer.