~ubuntu-branches/ubuntu/trusty/openscenegraph/trusty

« back to all changes in this revision

Viewing changes to OpenSceneGraph/include/osgUtil/IntersectionVisitor

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-07-29 04:34:38 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080729043438-no1h9h0dpsrlzp1y
* Non-maintainer upload.
* No longer try to detect (using /proc/cpuinfo when available) how many
  CPUs are available, fixing the FTBFS (due to -j0) on various platforms
  (Closes: #477353). The right way to do it is to support parallel=n in
  DEB_BUILD_OPTIONS (see Debian Policy §4.9.1), and adequate support has
  been implemented.
* Add patch to fix FTBFS due to the build system now refusing to handle
  whitespaces (Policy CMP0004 say the logs), thanks to Andreas Putzo who
  provided it (Closes: #482239):
   - debian/patches/fix-cmp0004-build-failure.dpatch
* Remove myself from Uploaders, as requested a while ago, done by Luk in
  his 2.2.0-2.1 NMU, which was never acknowledged.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
// forward declare to allow Intersector to reference it.
27
27
class IntersectionVisitor;
28
28
 
29
 
/** Pure virtual base class for implementating custom intersection technique.
 
29
/** Pure virtual base class for implementing custom intersection technique.
30
30
  * To implement a specific intersection technique on must override all
31
31
  * the pure virtue methods, concrete examples of how to do this can be seen in
32
32
  * the LineSegmentIntersector. */
77
77
};
78
78
 
79
79
 
80
 
/** Concrent class for passing multiple intersectors through the scene graph.
 
80
/** Concrete class for passing multiple intersectors through the scene graph.
81
81
  * To be used in conjunction with IntersectionVisitor. */
82
82
class OSGUTIL_EXPORT IntersectorGroup : public Intersector
83
83
{
124
124
    public:
125
125
 
126
126
        /** Callback used to implement the reading of external files, allowing support for paged databases to be
127
 
          * intergrated with IntersectionVisitor.  A concrete implementation can be found in osgDB.
 
127
          * integrated with IntersectionVisitor.  A concrete implementation can be found in osgDB.
128
128
          * Note, this loose coupling approach is required as osgUtil is independent from osgDB where the file reading
129
129
          * is implemented, and osgDB itself is dependent upon osgUtil so a circular dependency would result from
130
130
          * tighter integration.*/