diff --git a/Examples/DataRepresentation/Mesh/MeshTraits.cxx b/Examples/DataRepresentation/Mesh/MeshTraits.cxx index 57fb1bd43d7..4f917173b56 100644 --- a/Examples/DataRepresentation/Mesh/MeshTraits.cxx +++ b/Examples/DataRepresentation/Mesh/MeshTraits.cxx @@ -83,7 +83,7 @@ main(int, char *[]) // \item[PixelType.] The value type associated with every point. // \item[PointDimension.] The dimension of the space in which the mesh is // embedded. \item[MaxTopologicalDimension.] The highest dimension of the - // mesh cells. \item[CoordRepType.] The type used to represent spacial + // mesh cells. \item[CoordinateType.] The type used to represent spacial // coordinates. \item[InterpolationWeightType.] The type used to represent // interpolation weights. \item[CellPixelType.] The value type associated // with every cell. \end{description} diff --git a/Examples/SpatialObjects/MeshSpatialObject.cxx b/Examples/SpatialObjects/MeshSpatialObject.cxx index d1289838942..c96199a8f8b 100644 --- a/Examples/SpatialObjects/MeshSpatialObject.cxx +++ b/Examples/SpatialObjects/MeshSpatialObject.cxx @@ -63,7 +63,7 @@ main(int, char *[]) // Software Guide : BeginCodeSnippet auto myMesh = MeshType::New(); - MeshType::CoordRepType testPointCoords[4][3] = { + MeshType::CoordinateType testPointCoords[4][3] = { { 0, 0, 0 }, { 9, 0, 0 }, { 9, 9, 0 }, { 0, 0, 9 } }; diff --git a/Examples/Statistics/PointSetToListSampleAdaptor.cxx b/Examples/Statistics/PointSetToListSampleAdaptor.cxx index a1b6bbcdc9c..a8196882eb2 100644 --- a/Examples/Statistics/PointSetToListSampleAdaptor.cxx +++ b/Examples/Statistics/PointSetToListSampleAdaptor.cxx @@ -80,7 +80,7 @@ main() // dimension, we have to modify the \code{TMeshTraits} (one of the optional // template arguments for the \code{PointSet} class). The easiest way of // creating a custom mesh traits instance is to specialize the existing - // \doxygen{DefaultStaticMeshTraits}. By specifying the \code{TCoordRep} + // \doxygen{DefaultStaticMeshTraits}. By specifying the \code{TCoordinate} // template argument, we can change the coordinate value type of a point. // By specifying the \code{VPointDimension} template argument, we can // change the dimension of the point. As mentioned earlier, a