You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I checked the code at pygorithm\data_structures\quadtree.py in site-packages
Here is what I got
"""Author: Timothy MooreCreated On: 31th August 2017Defines a two-dimensional quadtree of arbitrarydepth and bucket size."""importinspectfrompygorithm.geometryimport (vector2, polygon2, rect2)
classQuadTree(object):
""" A quadtree is a sorting tool for two-dimensional space, most commonly used to reduce the number of required collision calculations in a two-dimensional scene. In this context, the scene is stepped without collision detection, then a quadtree is constructed from all of the boundaries """@staticmethoddefget_code():
""" Get the code for the QuadTree class :returns: code for QuadTree :rtype: string """returninspect.getsource(QuadTree)
Is there anything I missed?
btw, the source_code.zip is ok.
The text was updated successfully, but these errors were encountered:
After
pip install https://github.com/OmkarPathak/pygorithm/releases/download/v1.0.4/pygorithm-1.0.4-py2.py3-none-any.whl
I can not import
QuadTreeEntity
from anywhere,So I checked the code at
pygorithm\data_structures\quadtree.py
insite-packages
Here is what I got
Is there anything I missed?
btw, the source_code.zip is ok.
The text was updated successfully, but these errors were encountered: