Browse Source

Doc++

pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
616c4101cb
  1. 2
      src/SceneGraph/AbstractGroupedFeature.h
  2. 6
      src/SceneGraph/AbstractObject.h
  3. 3
      src/SceneGraph/Camera.h

2
src/SceneGraph/AbstractGroupedFeature.h

@ -33,7 +33,7 @@ template<std::uint8_t, class, class> class FeatureGroup;
Used together with FeatureGroup. Used together with FeatureGroup.
@section AbstractGroupedFeature-usage Usage @section AbstractGroupedFeature-subclassing Subclassing
Usage is via subclassing the feature using [CRTP](http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern) Usage is via subclassing the feature using [CRTP](http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern)
and typedef'ing FeatureGroup to accept only given type, e.g.: and typedef'ing FeatureGroup to accept only given type, e.g.:

6
src/SceneGraph/AbstractObject.h

@ -33,9 +33,9 @@ template<std::uint8_t, class> class AbstractFeature;
/** /**
@brief Base for objects @brief Base for objects
Provides minimal interface for features, not depending on object Provides minimal interface for features, not depending on object transformation
transformation implementation. See Object or @ref scenegraph for more implementation. This class is not directly instantiatable, use Object subclass
information. instead. See also @ref scenegraph for more information.
@see AbstractObject2D, AbstractObject3D @see AbstractObject2D, AbstractObject3D
*/ */

3
src/SceneGraph/Camera.h

@ -60,7 +60,8 @@ namespace Implementation {
/** /**
@brief Base for cameras @brief Base for cameras
See Drawable documentation for more information. See Drawable documentation for more information. This class is not directly
instantiatable, use Camera2D or Camera3D subclasses instead.
@section AbstractCamera-explicit-specializations Explicit template specializations @section AbstractCamera-explicit-specializations Explicit template specializations

Loading…
Cancel
Save