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

Function rangeX

src/python/PyImath/imathmodule.cpp:169–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168
169FixedArray2D<int> rangeX(int sizeX, int sizeY)
170{
171 FixedArray2D<int> f(sizeX, sizeY);
172 for (int j=0; j<sizeY; j++)
173 for (int i=0; i<sizeX; i++)
174 f(i,j) = i;
175 return f;
176}
177
178FixedArray2D<int> rangeY(int sizeX, int sizeY)
179{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected