MCPcopy Index your code
hub / github.com/clips/pattern / __init__

Method __init__

pattern/web/pdf/utils.py:206–213  ·  view source on GitHub ↗
(self, objs=None, gridsize=50)

Source from the content-addressed store, hash-verified

204class Plane(object):
205
206 def __init__(self, objs=None, gridsize=50):
207 self._objs = []
208 self._grid = {}
209 self.gridsize = gridsize
210 if objs is not None:
211 for obj in objs:
212 self.add(obj)
213 return
214
215 def __repr__(self):
216 return ('<Plane objs=%r>' % list(self))

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected