Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Space.hpp

    rccf826 r005e18  
    1717  virtual ~Space();
    1818
    19   /**
    20    * Calculates the distance between a Space and a Vector.
    21    */
    2219  virtual double distance(const Vector &point) const=0;
    23 
    24   /**
    25    * get the closest point inside the space to another point
    26    */
    2720  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 space
    33    * 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 false
    41    * otherwise.
    42    */
    4321  virtual bool isContained(const Vector &point) const;
    44 
    45   /**
    46    * Tests if this space contains the center of the coordinate system.
    47    */
    4822  virtual bool hasZero() const;
    4923
Note: See TracChangeset for help on using the changeset viewer.