Changes in src/Shapes/BaseShapes_impl.hpp [e38447:c6f395]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Shapes/BaseShapes_impl.hpp
re38447 rc6f395 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 LineSegmentSet getLineIntersections(const Line&); 18 virtual std::string toString(); 15 19 }; 16 20 17 21 class Cuboid_impl : public Shape_impl { 18 22 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(); 19 27 }; 20 28
Note:
See TracChangeset
for help on using the changeset viewer.