MCPcopy Create free account
hub / github.com/ActiveState/code / Frac

Function Frac

recipes/Python/578044_Fractal_painter/recipe-578044.py:233–241  ·  view source on GitHub ↗
(nLim)

Source from the content-addressed store, hash-verified

231
232
233def Frac(nLim):
234
235 aGrid = []
236
237 for i in range(W):
238
239 aGrid.append([-1] * H)
240
241 FracDown(aGrid, 0, 0, W - 1, H - 1, 0.0, 0.0, 0.0, 0.0,nLim, 1, 0.0, 0.0, 0.0)
242
243
244

Callers 1

recipe-578044.pyFile · 0.70

Calls 3

rangeFunction · 0.85
FracDownFunction · 0.70
appendMethod · 0.45

Tested by

no test coverage detected