MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / rangeY

Function rangeY

src/python/PyImath/imathmodule.cpp:178–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178FixedArray2D<int> rangeY(int sizeX, int sizeY)
179{
180 FixedArray2D<int> f(sizeX, sizeY);
181 for (int j=0; j<sizeY; j++)
182 for (int i=0; i<sizeX; i++)
183 f(i,j) = j;
184 return f;
185}
186
187} // anonymous-namespace
188

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected