home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / isnap_target.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-11-07  |  2.1 KB  |  67 lines

  1. #ifndef K3DSDK_ISNAP_TARGET_H
  2. #define K3DSDK_ISNAP_TARGET_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2006, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. /** \file
  24.         \author Tim Shead (tshead@k-3d.com)
  25. */
  26.  
  27. #include "iunknown.h"
  28. #include "types.h"
  29.  
  30. #include <vector>
  31.  
  32. namespace k3d
  33. {
  34.  
  35. class vector3;
  36. class point3;
  37.     
  38. /// Abstract interface for a "target" on a snappable object
  39. class isnap_target :
  40.     public virtual iunknown
  41. {
  42. public:
  43.     virtual ~isnap_target() {}
  44.  
  45.     /// Defines a collection of "snap groups"
  46.     typedef std::vector<string_t> groups_t;
  47.     
  48.     /// Returns a human-readable label that describes this target
  49.     virtual const string_t label() = 0;
  50.     /// Returns a collection of groups that this target is a member of
  51.     virtual const groups_t groups() = 0;
  52.     /// Given a set of local coordinates, returns the (optional, could return false) corresponding target position in local coordiantes
  53.     virtual bool target_position(const point3& Position, point3& TargetPosition) = 0;
  54.     /// Given a set of local coordinates, returns the (optional, could return false) corresponding target orientation in local coordinates
  55.     virtual bool target_orientation(const point3& Position, vector3& TargetLook, vector3& TargetUp) = 0;
  56.  
  57. protected:
  58.     isnap_target() {}
  59.     isnap_target(const isnap_target&) {}
  60.     isnap_target& operator=(const isnap_target&) { return *this; }
  61. };
  62.  
  63. } // namespace k3d
  64.  
  65. #endif // !K3DSDK_ISNAP_TARGET_H
  66.  
  67.