Changeset 70 for osgVisual/include


Ignore:
Timestamp:
Jul 20, 2010, 9:24:42 PM (14 years ago)
Author:
Torben Dannhauer
Message:

sky silverlining vereinfacht.

Location:
osgVisual/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • osgVisual/include/dataIO/dataIO_transportContainer.h

    r32 r70  
    3434                        frameID(tC_.frameID),
    3535                        viewMatrix(tC_.viewMatrix),
     36                        projectionMatrix(tC_.projectionMatrix),
    3637                        executer(tC_.executer),
    3738                        ioSlots(tC_.ioSlots){}
     
    4849        int frameID;
    4950        osg::Matrixd viewMatrix;
     51        osg::Matrixd projectionMatrix;
    5052        executerList executer;
    5153        slotList ioSlots;
     
    5860        void setViewMatrix(const osg::Matrixd& viewMatrix_){viewMatrix=viewMatrix_;}
    5961        const osg::Matrixd& getViewMatrix() const {return viewMatrix;}
     62
     63        void setProjectionMatrix(const osg::Matrixd& projectionMatrix_){projectionMatrix=projectionMatrix_;}
     64        const osg::Matrixd& getProjectionMatrix() const {return projectionMatrix;}
    6065
    6166        void setExecuter(const executerList& executer_) {executer=executer_;}
  • osgVisual/include/dataIO/visual_dataIO.h

    r65 r70  
    9090        osg::ref_ptr<dataIO_eventCallback> eventCallback;
    9191
    92 
    9392        class dataIO_finalDrawCallback : public osg::Camera::DrawCallback
    9493        {
  • osgVisual/include/sky_Silverlining/visual_skySilverLining.h

    r60 r70  
    9797
    9898        /**
    99          * \brief This function initializes the sky framework if it's used with the main camera (without any PRE_RENDER camera like the distortion module).
    100          *
    101          * @param sceneGraphRoot : osg::Group* which is the rootNode and coordinateSystemNode of the scene.
    102          */
    103         void init(osg::CoordinateSystemNode *sceneGraphRoot);
    104 
    105         /**
    10699         * \brief This function can be called by the updateCallback. If the postInitialization for adding clouds etc. has be called already, this function will skip.
    107100         *
Note: See TracChangeset for help on using the changeset viewer.