MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / empty

Method empty

COLLADAFramework/include/COLLADAFWArray.h:161–161  ·  view source on GitHub ↗

Returns true if the array is empty, false otherwise.*/

Source from the content-addressed store, hash-verified

159
160 /** Returns true if the array is empty, false otherwise.*/
161 bool empty() const { return mCount == 0; }
162
163 /** Return s the index'th element in the array. No check is performed, if the index is out of bounds.*/
164 Type& operator[] ( size_t index ) { COLLADABU_ASSERT(index < mCapacity); return mData[index]; }

Callers 15

hasNormalIndicesMethod · 0.45
hasTangentIndicesMethod · 0.45
hasBinormalIndicesMethod · 0.45
hasColorIndicesMethod · 0.45
hasUVCoordIndicesMethod · 0.45
doExportMethod · 0.45
exportMapMethod · 0.45
exportImageMethod · 0.45
cleanMethod · 0.45
setTextureMethod · 0.45
createMorphControllerMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected