Changeset 329 for trunk


Ignore:
Timestamp:
12/18/09 17:54:06 (2 years ago)
Author:
bwoeldecke
Message:

avango-osg: added member function make_ortho()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/avango-osg/python/avango/osg/OSGMatrix.cpp

    r88 r329  
    9797 
    9898  // introducing member function pointers for overloaded function of osg::Matrix::makeOrtho2D 
     99  void (osg::Matrix::*makeOrtho)(double,double,double,double,double,double) = &osg::Matrix::makeOrtho; 
    99100  void (osg::Matrix::*makeOrtho2D)(double,double,double,double) = &osg::Matrix::makeOrtho2D; 
    100101 
     
    152153    .def("make_rotate", mrot4) 
    153154    .def("make_rotate", mrot5) 
     155    .def("make_ortho", makeOrtho) 
    154156    .def("make_ortho_2d", makeOrtho2D) 
    155157    .def("invert", &osg::Matrix::invert) 
Note: See TracChangeset for help on using the changeset viewer.