remove trailing whitespace

This commit is contained in:
Hank Childs 2019-09-17 14:46:51 -07:00
parent ccedb5aac1
commit f4edb6a8ed
3 changed files with 23 additions and 23 deletions

@ -3,9 +3,9 @@
/**
* The Verdict manual defines a set of commonly
* used components of a hexahedra (hex). For example,
* area, edge lengths, and so forth.
* area, edge lengths, and so forth.
*
* These definitions can be found starting on
* These definitions can be found starting on
* page 77 of the Verdict manual.
*
* This file contains a set of functions which
@ -590,7 +590,7 @@ VTKM_EXEC Vector GetHexX3(const CollectionOfPoints& pts)
* Returns the A_i matrix defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -675,7 +675,7 @@ VTKM_EXEC vtkm::Vec<Vector, 3> GetHexAi(const CollectionOfPoints& pts, const vtk
* Returns ||A_i||^2 as defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -695,7 +695,7 @@ VTKM_EXEC Scalar GetHexAiNormSquared(const CollectionOfPoints& pts, const vtkm::
* Returns ||adj(A_i)||^2 as defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -715,7 +715,7 @@ VTKM_EXEC Scalar GetHexAiAdjNormSquared(const CollectionOfPoints& pts, const vtk
* Returns alpha_i, the determinant of A_i, as defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -731,7 +731,7 @@ VTKM_EXEC Scalar GetHexAlphai(const CollectionOfPoints& pts, const vtkm::Id& ind
* Returns hat{A}_i, the "normalized" version of A_i, as defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -751,7 +751,7 @@ VTKM_EXEC vtkm::Vec<Vector, 3> GetHexAiHat(const CollectionOfPoints& pts, const
* Returns hat{alpha}_i, the determinant of hat{A}_i, as defined in the verdict manual.
*
* \param [in] pts The eight points which define the Hex.
* \param [in] index The index of A to load.
* \param [in] index The index of A to load.
* \return Returns the vector.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>

@ -3,9 +3,9 @@
/**
* The Verdict manual defines a set of commonly
* used components of a quadrilateral (quad). For example,
* area, side lengths, and so forth.
* area, side lengths, and so forth.
*
* These definitions can be found starting on
* These definitions can be found starting on
* page 32 of the Verdict manual.
*
* This file contains a set of functions which

@ -5,7 +5,7 @@
* used components of a triangle. For example,
* area, side lengths, and so forth.
*
* These definitions can be found starting on
* These definitions can be found starting on
* page 17 of the Verdict manual.
*
* This file contains a set of functions which
@ -97,11 +97,11 @@ VTKM_EXEC Scalar GetTriangleL2Magnitude(const CollectionOfPoints& pts)
/**
* Returns the Max of the magnitude of each vector which makes up the sides of the triangle.
*
*
* That is to say, the length of the longest side.
*
*
* \param [in] pts The three points which define the verticies of the triangle.
*
*
* \return Returns the max of the triangle side lengths.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -116,11 +116,11 @@ VTKM_EXEC Scalar GetTriangleLMax(const CollectionOfPoints& pts)
/**
* Returns the Min of the magnitude of each vector which makes up the sides of the triangle.
*
*
* That is to say, the length of the shortest side.
*
*
* \param [in] pts The three points which define the verticies of the triangle.
*
*
* \return Returns the max of the triangle side lengths.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -135,9 +135,9 @@ VTKM_EXEC Scalar GetTriangleLMin(const CollectionOfPoints& pts)
/**
* Returns the area of the triangle.
*
*
* \param [in] pts The three points which define the verticies of the triangle.
*
*
* \return Returns the are of the triangle..
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -153,9 +153,9 @@ VTKM_EXEC Scalar GetTriangleArea(const CollectionOfPoints& pts)
/**
* Returns the radius of a circle inscribed within the given triangle. This is commonly denoted as 'r'.
*
*
* \param [in] pts The three points which define the verticies of the triangle.
*
*
* \return Returns the inradius.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>
@ -172,9 +172,9 @@ VTKM_EXEC Scalar GetTriangleInradius(const CollectionOfPoints& pts)
/**
* Returns the radius of a circle circumscribed around the given triangle. This is commonly denoted as 'R'.
*
*
* \param [in] pts The three points which define the verticies of the triangle.
*
*
* \return Returns the circumradius.
*/
template <typename Scalar, typename Vector, typename CollectionOfPoints>