Changes in src/Space.hpp [ccf826:005e18]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Space.hpp ¶
rccf826 r005e18 17 17 virtual ~Space(); 18 18 19 /**20 * Calculates the distance between a Space and a Vector.21 */22 19 virtual double distance(const Vector &point) const=0; 23 24 /**25 * get the closest point inside the space to another point26 */27 20 virtual Vector getClosestPoint(const Vector &point) const=0; 28 29 /**30 * get the shortest Vector from a point to a Space.31 *32 * The Vector always points from the given Vector to the point in space33 * returned by Plane::getClosestPoint().34 */35 virtual Vector getVectorToPoint(const Vector &point) const;36 37 /**38 * Test wether a point is contained in the space.39 *40 * returns true, when the point lies inside and false41 * otherwise.42 */43 21 virtual bool isContained(const Vector &point) const; 44 45 /**46 * Tests if this space contains the center of the coordinate system.47 */48 22 virtual bool hasZero() const; 49 23
Note:
See TracChangeset
for help on using the changeset viewer.