From 1f1d3b57feef6e30b969ee2956b28674e2ff09b0 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 26 Apr 2002 13:45:01 +0000 Subject: [PATCH] Updated docs. Fix to pfb Makefile for missing $. --- NEWS | 4 ++++ doc/doc++/osg/DrawPixels.html | 6 +++--- doc/doc++/osg/Drawable.html | 12 ++++++------ doc/doc++/osg/EarthSky.html | 6 +++--- doc/doc++/osg/GeoSet.html | 6 +++--- doc/doc++/osg/Group.html | 12 ++++++------ doc/doc++/osg/Impostor.html | 8 ++++---- doc/doc++/osg/ImpostorSprite.html | 2 +- doc/doc++/osg/LOD.html | 10 +++++----- doc/doc++/osg/PositionAttitudeTransform.html | 6 +++--- doc/doc++/osg/Projection.html | 6 +++--- doc/doc++/osg/Switch.html | 6 +++--- doc/doc++/osg/Transform.html | 6 +++--- src/osgPlugins/pfb/Makefile | 2 +- 14 files changed, 48 insertions(+), 44 deletions(-) diff --git a/NEWS b/NEWS index 2d0e1b08d..22d7fc609 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,10 @@ OSG News (most significant items from ChangeLog) virtual reality, scientific visualization, CAD, and architectural walk-throughs. Many thanks to Sun for providing resources for the port. + Additional html documentation has been added to the distribution to + make it easier to get an understanding of scene graph technology and + the project itself and how to make use of it. + Support has also been added for OpenGL's texture cube mapping which is ideal for accurate environmental reflections and much more. diff --git a/doc/doc++/osg/DrawPixels.html b/doc/doc++/osg/DrawPixels.html index a21c5ff5d..8a9ede7b3 100644 --- a/doc/doc++/osg/DrawPixels.html +++ b/doc/doc++/osg/DrawPixels.html @@ -94,11 +94,11 @@
oinline ParentList getParents()
-oinline Node* getParent(const int i) +oinline Node* getParent(const unsigned int i)
-oinline const Node* getParent(const int i) const +oinline const Node* getParent(const unsigned int i) const
-oinline const int getNumParents() const +oinline const unsigned int getNumParents() const
oinline void setStateSet(StateSet* state)
diff --git a/doc/doc++/osg/Drawable.html b/doc/doc++/osg/Drawable.html index d0ecc63d5..c054f0c92 100644 --- a/doc/doc++/osg/Drawable.html +++ b/doc/doc++/osg/Drawable.html @@ -38,13 +38,13 @@ [more]inline ParentList getParents()
Get the a copy of parent list of node.
-[more]inline Node* getParent(const int i) +[more]inline Node* getParent(const unsigned int i)
Get a single parent of Drawable.
-[more]inline const Node* getParent(const int i) const +[more]inline const Node* getParent(const unsigned int i) const
Get a single const parent of Drawable.
-[more]inline const int getNumParents() const +[more]inline const unsigned int getNumParents() const
Get the number of parents of node.
[more]inline void setStateSet(StateSet* state) @@ -278,21 +278,21 @@ prevent modification of the parent list.

-

oinline Node* getParent(const int i) +
oinline Node* getParent(const unsigned int i)
Get a single parent of Drawable.
Parameters:
i - index of the parent to get.
Returns:
the parent i.

-

oinline const Node* getParent(const int i) const +
oinline const Node* getParent(const unsigned int i) const
Get a single const parent of Drawable.
Parameters:
i - index of the parent to get.
Returns:
the parent i.

-

oinline const int getNumParents() const +
oinline const unsigned int getNumParents() const
Get the number of parents of node. diff --git a/doc/doc++/osg/EarthSky.html b/doc/doc++/osg/EarthSky.html index ca1cf1c6f..fbbb7bfd7 100644 --- a/doc/doc++/osg/EarthSky.html +++ b/doc/doc++/osg/EarthSky.html @@ -67,11 +67,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/doc/doc++/osg/GeoSet.html b/doc/doc++/osg/GeoSet.html index a5a7ba143..fe31363ef 100644 --- a/doc/doc++/osg/GeoSet.html +++ b/doc/doc++/osg/GeoSet.html @@ -338,11 +338,11 @@
oinline ParentList getParents()
-oinline Node* getParent(const int i) +oinline Node* getParent(const unsigned int i)
-oinline const Node* getParent(const int i) const +oinline const Node* getParent(const unsigned int i) const
-oinline const int getNumParents() const +oinline const unsigned int getNumParents() const
oinline void setStateSet(StateSet* state)
diff --git a/doc/doc++/osg/Group.html b/doc/doc++/osg/Group.html index 42201d5c8..4e8f905b4 100644 --- a/doc/doc++/osg/Group.html +++ b/doc/doc++/osg/Group.html @@ -41,13 +41,13 @@ [more]virtual bool replaceChild( Node* origChild, Node* newChild )
Replace specified Node with another Node.
-[more]inline const int getNumChildren() const +[more]inline const unsigned int getNumChildren() const
return the number of chilren nodes
-[more]inline Node* getChild( const int i ) +[more]inline Node* getChild( const unsigned int i )
return child node at position i
-[more]inline const Node* getChild( const int i ) const +[more]inline const Node* getChild( const unsigned int i ) const
return child node at position i
[more]inline bool containsNode( const Node* node ) const @@ -131,17 +131,17 @@ not remove origNode. Also returns false if newChild is a Scene node.

-

oinline const int getNumChildren() const +
oinline const unsigned int getNumChildren() const
return the number of chilren nodes

-

oinline Node* getChild( const int i ) +
oinline Node* getChild( const unsigned int i )
return child node at position i

-

oinline const Node* getChild( const int i ) const +
oinline const Node* getChild( const unsigned int i ) const
return child node at position i

diff --git a/doc/doc++/osg/Impostor.html b/doc/doc++/osg/Impostor.html index 454d4aa6b..2cf06add3 100644 --- a/doc/doc++/osg/Impostor.html +++ b/doc/doc++/osg/Impostor.html @@ -77,7 +77,7 @@

oinline const float getRange(const unsigned int index) const
-oinline const int getNumRanges() const +oinline const unsigned int getNumRanges() const
oinline void setCenter(const Vec3 &center)
@@ -127,11 +127,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/doc/doc++/osg/ImpostorSprite.html b/doc/doc++/osg/ImpostorSprite.html index c744636e3..02fafd7c1 100644 --- a/doc/doc++/osg/ImpostorSprite.html +++ b/doc/doc++/osg/ImpostorSprite.html @@ -140,7 +140,7 @@
oinline ParentList getParents()
-oinline const int getNumParents() const +oinline const unsigned int getNumParents() const
oinline void setStateSet(StateSet* state)
diff --git a/doc/doc++/osg/LOD.html b/doc/doc++/osg/LOD.html index b32d12cd3..089f454b2 100644 --- a/doc/doc++/osg/LOD.html +++ b/doc/doc++/osg/LOD.html @@ -38,7 +38,7 @@ [more]inline const float getRange(const unsigned int index) const
returns the range for specified index
-[more]inline const int getNumRanges() const +[more]inline const unsigned int getNumRanges() const
returns the number of ranges currently set
[more]inline void setCenter(const Vec3 &center) @@ -98,11 +98,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
@@ -173,7 +173,7 @@ the current getNumRanges().

-

oinline const int getNumRanges() const +
oinline const unsigned int getNumRanges() const
returns the number of ranges currently set

diff --git a/doc/doc++/osg/PositionAttitudeTransform.html b/doc/doc++/osg/PositionAttitudeTransform.html index 4da86c3b7..3a183d713 100644 --- a/doc/doc++/osg/PositionAttitudeTransform.html +++ b/doc/doc++/osg/PositionAttitudeTransform.html @@ -120,11 +120,11 @@

ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/doc/doc++/osg/Projection.html b/doc/doc++/osg/Projection.html index 47d420219..2fce9a886 100644 --- a/doc/doc++/osg/Projection.html +++ b/doc/doc++/osg/Projection.html @@ -68,11 +68,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/doc/doc++/osg/Switch.html b/doc/doc++/osg/Switch.html index 2cfe82a48..2daeac3a5 100644 --- a/doc/doc++/osg/Switch.html +++ b/doc/doc++/osg/Switch.html @@ -67,11 +67,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/doc/doc++/osg/Transform.html b/doc/doc++/osg/Transform.html index 51e12465d..33b5f66b1 100644 --- a/doc/doc++/osg/Transform.html +++ b/doc/doc++/osg/Transform.html @@ -113,11 +113,11 @@
ovirtual bool replaceChild( Node* origChild, Node* newChild )
-oinline const int getNumChildren() const +oinline const unsigned int getNumChildren() const
-oinline Node* getChild( const int i ) +oinline Node* getChild( const unsigned int i )
-oinline const Node* getChild( const int i ) const +oinline const Node* getChild( const unsigned int i ) const
oinline bool containsNode( const Node* node ) const
diff --git a/src/osgPlugins/pfb/Makefile b/src/osgPlugins/pfb/Makefile index 9a44f6b41..acba36d89 100644 --- a/src/osgPlugins/pfb/Makefile +++ b/src/osgPlugins/pfb/Makefile @@ -6,7 +6,7 @@ CXXFILES =\ ConvertToPerformer.cpp\ ReaderWriterPFB.cpp\ -LIBS += $(OSG_LIBS) $(PF_XTRA_LIBS) (OTHER_LIBS) +LIBS += $(OSG_LIBS) $(PF_XTRA_LIBS) $(OTHER_LIBS) TARGET_BASENAME = pfb include $(TOPDIR)/Make/cygwin_plugin_def