Browse Source

MeshTools: doc++

pull/206/head
Vladimír Vondruš 9 years ago
parent
commit
b109d520a9
  1. 5
      src/Magnum/MeshTools/CombineIndexedArrays.h

5
src/Magnum/MeshTools/CombineIndexedArrays.h

@ -45,6 +45,9 @@ namespace Implementation {
/**
@brief Combine index arrays
@param[in,out] arrays Index arrays to combine. These arrays are updated
in-place to contain unique combinations of the original indices.
@return Resulting combined index array
Creates new combined index array and updates the original ones with translation
to new ones. For example, when you have position and normal array, each indexed
@ -92,7 +95,7 @@ inline std::vector<UnsignedInt> combineIndexArrays(std::initializer_list<std::re
}
/**
@brief Combine index arrays
@brief Combine interleaved index arrays
Unlike above, this function takes one interleaved array instead of separate
index arrays. Continuing with the above example, you would call this function

Loading…
Cancel
Save