#include #include #include #include #include bool SectorPlacer_readLocalData(osg::Object &obj, osgDB::Input &fr); bool SectorPlacer_writeLocalData(const osg::Object &obj, osgDB::Output &fw); osgDB::RegisterDotOsgWrapperProxy SectorPlacer_Proxy ( new osgParticle::SectorPlacer, "SectorPlacer", "Object Placer CenteredPlacer SectorPlacer", SectorPlacer_readLocalData, SectorPlacer_writeLocalData ); bool SectorPlacer_readLocalData(osg::Object &obj, osgDB::Input &fr) { osgParticle::SectorPlacer &myobj = static_cast(obj); bool itAdvanced = false; osgParticle::rangef r; if (fr[0].matchWord("radiusRange")) { if (fr[1].getFloat(r.minimum) && fr[2].getFloat(r.maximum)) { myobj.setRadiusRange(r); fr += 3; itAdvanced = true; } } if (fr[0].matchWord("phiRange")) { if (fr[1].getFloat(r.minimum) && fr[2].getFloat(r.maximum)) { myobj.setPhiRange(r); fr += 3; itAdvanced = true; } } return itAdvanced; } bool SectorPlacer_writeLocalData(const osg::Object &obj, osgDB::Output &fw) { const osgParticle::SectorPlacer &myobj = static_cast(obj); osgParticle::rangef r; r = myobj.getRadiusRange(); fw.indent() << "radiusRange " << r.minimum << " " << r.maximum << std::endl; r = myobj.getPhiRange(); fw.indent() << "phiRange " << r.minimum << " " << r.maximum << std::endl; return true; }