MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / appendArray

Method appendArray

Engine/lib/collada/include/dae/daeArray.h:686–693  ·  view source on GitHub ↗

* Appends a number of elements to this array from a C native array. * @param num The number of elements to append. * @param array The C native array that contains the values to append. */

Source from the content-addressed store, hash-verified

684 * @param array The C native array that contains the values to append.
685 */
686 void appendArray( size_t num, T *array )
687 {
688 if ( array == NULL )
689 return;
690
691 for ( size_t i = 0; i < num; i++ )
692 append( array[i] );
693 }
694 /**
695 * Appends a number of elements to this array from another daeTArray.
696 * @param array The daeTArray that contains the values to append.

Callers 1

getTriangleDataMethod · 0.80

Calls 1

getCountMethod · 0.45

Tested by

no test coverage detected