X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fscene%2Ftgdb%2FTreeBin.hxx;h=bb542c230edbd80860cc4f9cbca13bd2f84fba0e;hb=2cc2a857a2cc2daff30601e0f8f697c768dd5b30;hp=3c7970281005d2e83d1f9bd756aa801b1f19005f;hpb=8cbe9f1bd0b2fb48480ecd03e817930e8d5a126e;p=simgear.git diff --git a/simgear/scene/tgdb/TreeBin.hxx b/simgear/scene/tgdb/TreeBin.hxx index 3c797028..bb542c23 100644 --- a/simgear/scene/tgdb/TreeBin.hxx +++ b/simgear/scene/tgdb/TreeBin.hxx @@ -36,12 +36,10 @@ namespace simgear class TreeBin { public: struct Tree { - Tree(const SGVec3f& p, int t, float s) : - position(p), texture_index(t), scale(s) + Tree(const SGVec3f& p) : + position(p) { } SGVec3f position; - int texture_index; - float scale; }; typedef std::vector TreeList; @@ -55,7 +53,7 @@ public: void insert(const Tree& t) { _trees.push_back(t); } void insert(const SGVec3f& p, int t, float s) - { insert(Tree(p, t, s)); } + { insert(Tree(p)); } unsigned getNumTrees() const { return _trees.size(); } @@ -64,7 +62,6 @@ public: TreeList _trees; }; -osg::Geometry* createOrthQuads(float w, float h, const osg::Matrix& rotate); osg::Group* createForest(TreeBin& forest, const osg::Matrix& transform); } #endif