Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Space.cpp

    r005e18 r42a101  
    1919}
    2020
     21Vector Space::getVectorToPoint(const Vector &origin) const{
     22  Vector support = getClosestPoint(origin);
     23  return support-origin;
     24}
     25
    2126bool Space::isContained(const Vector &point) const{
    2227  return (distance(point)) < MYEPSILON;
Note: See TracChangeset for help on using the changeset viewer.