[BACK]Return to scene.i CVS log [TXT][DIR] Up to [Development] / performer / src / pyper

File: [Development] / performer / src / pyper / scene.i (download)

Revision 1.1, Mon May 21 21:40:00 2001 UTC (16 years, 4 months ago) by flynnt
Branch: MAIN
CVS Tags: HEAD

Doing some cleanup and adding the pfgtk example and the python wrapper for
Performer (pyper).

// This file contains the public interface from the Performer
// header file pf/pfScene.h
// This Performer header file is (c) Silicon Graphics, Inc.
// Binding specific code is (c) SARA.

%{
#include <Performer/pf/pfScene.h>
%}


class pfScene : public pfGroup
{
public:

    void setGState(pfGeoState *gs);

    pfGeoState* getGState() const;

    void setGStateIndex(int gs);

    int getGStateIndex() const;

    pfScene();

    virtual ~pfScene();

    static pfType* getClassType();

};