|
openscenegraph
|
#include <HighlightMapGenerator>
Public Member Functions | |
| HighlightMapGenerator (const osg::Vec3 &light_direction, const osg::Vec4 &light_color, float specular_exponent, int texture_size=64) | |
| HighlightMapGenerator (const HighlightMapGenerator ©, const osg::CopyOp ©op=osg::CopyOp::SHALLOW_COPY) | |
| Public Member Functions inherited from osgUtil::CubeMapGenerator | |
| CubeMapGenerator (int texture_size=64) | |
| CubeMapGenerator (const CubeMapGenerator ©, const osg::CopyOp ©op=osg::CopyOp::SHALLOW_COPY) | |
| osg::Image * | getImage (osg::TextureCubeMap::Face face) |
| const osg::Image * | getImage (osg::TextureCubeMap::Face face) const |
| void | generateMap (bool use_osg_system=true) |
| Public Member Functions inherited from osg::Referenced | |
| Referenced () | |
| Referenced (bool threadSafeRefUnref) | |
| Referenced (const Referenced &) | |
| Referenced & | operator= (const Referenced &) |
| virtual void | setThreadSafeRefUnref (bool) |
| bool | getThreadSafeRefUnref () const |
| OpenThreads::Mutex * | getRefMutex () const |
| int | ref () const |
| int | unref () const |
| int | unref_nodelete () const |
| int | referenceCount () const |
| ObserverSet * | getObserverSet () const |
| ObserverSet * | getOrCreateObserverSet () const |
| void | addObserver (Observer *observer) const |
| void | removeObserver (Observer *observer) const |
Protected Member Functions | |
| virtual | ~HighlightMapGenerator () |
| HighlightMapGenerator & | operator= (const HighlightMapGenerator &) |
| virtual osg::Vec4 | compute_color (const osg::Vec3 &R) const |
| Protected Member Functions inherited from osgUtil::CubeMapGenerator | |
| virtual | ~CubeMapGenerator () |
| CubeMapGenerator & | operator= (const CubeMapGenerator &) |
| void | set_pixel (int index, int c, int r, const osg::Vec4 &color) |
| Protected Member Functions inherited from osg::Referenced | |
| virtual | ~Referenced () |
| void | signalObserversAndDelete (bool signalDelete, bool doDelete) const |
| void | deleteUsingDeleteHandler () const |
Additional Inherited Members | |
| Static Public Member Functions inherited from osg::Referenced | |
| static OpenThreads::Mutex * | getGlobalReferencedMutex () |
| static void | setDeleteHandler (DeleteHandler *handler) |
| static DeleteHandler * | getDeleteHandler () |
| Static Protected Member Functions inherited from osgUtil::CubeMapGenerator | |
| static osg::Vec4 | vector_to_color (const osg::Vec3 &vec) |
| Protected Attributes inherited from osg::Referenced | |
| OpenThreads::AtomicPtr | _observerSet |
| OpenThreads::Atomic | _refCount |
This cube map generator produces a specular highlight map. The vector-color association is: C = (R dot (-L)) ^ n, where C is the resulting color, R is the reflection vector, L is the light direction and n is the specular exponent.
| osgUtil::HighlightMapGenerator::HighlightMapGenerator | ( | const osg::Vec3 & | light_direction, |
| const osg::Vec4 & | light_color, | ||
| float | specular_exponent, | ||
| int | texture_size = 64 ) |
Referenced by HighlightMapGenerator(), and operator=().
| osgUtil::HighlightMapGenerator::HighlightMapGenerator | ( | const HighlightMapGenerator & | copy, |
| const osg::CopyOp & | copyop = osg::CopyOp::SHALLOW_COPY ) |
References HighlightMapGenerator(), and osg::CopyOp::SHALLOW_COPY.
|
inlineprotectedvirtual |
|
inlineprotectedvirtual |
Override this method to define how colors are computed. The parameter R is the reflection vector, pointing from the center of the cube. The return value should be the RGBA color associated with that reflection ray.
Implements osgUtil::CubeMapGenerator.
References osg::Vec3f::length(), and osg::Vec4f::w().
|
inlineprotected |
References HighlightMapGenerator().