mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
Remove unused ModelTree::getModelAt
This commit is contained in:
parent
355cf07443
commit
b98ee351a5
2 changed files with 0 additions and 6 deletions
|
@ -112,10 +112,6 @@ bool FindAndUpdateModelOperator::PostRecursion(OctreeElement* element) {
|
|||
}
|
||||
|
||||
|
||||
ModelTreeElement* ModelTree::getModelAt(float x, float y, float z, float s) const {
|
||||
return static_cast<ModelTreeElement*>(getOctreeElementAt(x, y, z, s));
|
||||
}
|
||||
|
||||
// TODO: improve this to not use multiple recursions
|
||||
void ModelTree::storeModel(const ModelItem& model, const SharedNodePointer& senderNode) {
|
||||
// First, look for the existing model in the tree..
|
||||
|
|
|
@ -36,8 +36,6 @@ public:
|
|||
/// Type safe version of getRoot()
|
||||
ModelTreeElement* getRoot() { return static_cast<ModelTreeElement*>(_rootElement); }
|
||||
|
||||
ModelTreeElement* getModelAt(float x, float y, float z, float s) const;
|
||||
|
||||
// These methods will allow the OctreeServer to send your tree inbound edit packets of your
|
||||
// own definition. Implement these to allow your octree based server to support editing
|
||||
virtual bool getWantSVOfileVersions() const { return true; }
|
||||
|
|
Loading…
Reference in a new issue