Browse Source

MeshTools: removed autolink-preventing % noise.

pull/77/head
Vladimír Vondruš 12 years ago
parent
commit
05b7cacca6
  1. 2
      src/Magnum/MeshTools/CombineIndexedArrays.h
  2. 6
      src/Magnum/MeshTools/Interleave.h
  3. 2
      src/Magnum/MeshTools/RemoveDuplicates.h
  4. 2
      src/Magnum/MeshTools/Subdivide.h
  5. 2
      src/Magnum/MeshTools/Tipsify.h

2
src/Magnum/MeshTools/CombineIndexedArrays.h

@ -147,7 +147,7 @@ template<class T, class ...U> inline void writeCombinedArrays(UnsignedInt stride
/**
@brief Combine indexed arrays
@param[in,out] indexedArrays Index and attribute arrays
@return %Array with resulting indices
@return Array with resulting indices
Creates new combined index array and reorders original attribute arrays so they
can be indexed with the new single index array.

6
src/Magnum/MeshTools/Interleave.h

@ -95,7 +95,7 @@ template<class T, class ...U> void writeInterleaved(std::size_t stride, char* st
}
/**
@brief %Interleave vertex attributes
@brief Interleave vertex attributes
This function takes list of attribute arrays and returns them interleaved, so
data for each attribute are in continuous place in memory.
@ -157,7 +157,7 @@ template<class T, class ...U> typename std::enable_if<!std::is_same<T, Mesh>::va
}
/**
@brief %Interleave vertex attributes into existing buffer
@brief Interleave vertex attributes into existing buffer
Unlike @ref interleave() this function interleaves the data into existing
buffer and leaves gaps untouched instead of zero-initializing them. This
@ -180,7 +180,7 @@ template<class T, class ...U> void interleaveInto(Containers::ArrayReference<cha
#ifdef MAGNUM_BUILD_DEPRECATED
/**
@brief %Interleave vertex attributes, write them to array buffer and configure the mesh
@brief Interleave vertex attributes, write them to array buffer and configure the mesh
@param mesh Output mesh
@param buffer Output vertex buffer
@param usage Vertex buffer usage

2
src/Magnum/MeshTools/RemoveDuplicates.h

@ -56,7 +56,7 @@ namespace Implementation {
}
/**
@brief %Remove duplicate floating-point vector data from given array
@brief Remove duplicate floating-point vector data from given array
@param[in,out] data Input data array
@param[out] epsilon Epsilon value, vertices nearer than this distance will be
melt together

2
src/Magnum/MeshTools/Subdivide.h

@ -61,7 +61,7 @@ template<class Vertex, class Interpolator> class Subdivide {
}
/**
@brief %Subdivide the mesh
@brief Subdivide the mesh
@tparam Vertex Vertex data type
@tparam Interpolator See `interpolator` function parameter
@param[in,out] indices Index array to operate on

2
src/Magnum/MeshTools/Tipsify.h

@ -61,7 +61,7 @@ class MAGNUM_MESHTOOLS_EXPORT Tipsify {
}
/**
@brief %Tipsify the mesh
@brief Tipsify the mesh
@param[in,out] indices Indices array to operate on
@param[in] vertexCount Vertex count
@param[in] cacheSize Post-transform vertex cache size

Loading…
Cancel
Save