diff --git a/src/OpenFOAM/db/dictionary/dictionary.H b/src/OpenFOAM/db/dictionary/dictionary.H index 7457d1e31f..bb5f186aad 100644 --- a/src/OpenFOAM/db/dictionary/dictionary.H +++ b/src/OpenFOAM/db/dictionary/dictionary.H @@ -38,8 +38,7 @@ Description dictionaries since, unlike the IOdictionary class, it does not use an objectRegistry itself to work. -ToDo - A merge() member function with a non-const dictionary parameter. + To add - a merge() member function with a non-const dictionary parameter? This would avoid unnecessary cloning in the add(entry*, bool) method. SourceFiles diff --git a/src/mesh/blockMesh/curvedEdges/BSpline.H b/src/mesh/blockMesh/curvedEdges/BSpline.H index 122d6e8a8c..93a8e75b43 100644 --- a/src/mesh/blockMesh/curvedEdges/BSpline.H +++ b/src/mesh/blockMesh/curvedEdges/BSpline.H @@ -47,12 +47,11 @@ Description segments. In rare cases (sections with very high curvatures), the resulting distribution may be sub-optimal. + A future implementation could also handle closed splines. + SeeAlso CatmullRomSpline -ToDo - A future implementation could also handle closed splines. - SourceFiles BSpline.C diff --git a/src/mesh/blockMesh/curvedEdges/CatmullRomSpline.H b/src/mesh/blockMesh/curvedEdges/CatmullRomSpline.H index 3726346f0f..b3ac25bc54 100644 --- a/src/mesh/blockMesh/curvedEdges/CatmullRomSpline.H +++ b/src/mesh/blockMesh/curvedEdges/CatmullRomSpline.H @@ -48,13 +48,12 @@ Description segments. In rare cases (sections with very high curvatures), the resulting distribution may be sub-optimal. + A future implementation could also handle closed splines. + SeeAlso http://www.algorithmist.net/catmullrom.html provides a nice introduction -ToDo - A future implementation could also handle closed splines. - SourceFiles CatmullRomSpline.C diff --git a/src/mesh/blockMesh/curvedEdges/polyLine.H b/src/mesh/blockMesh/curvedEdges/polyLine.H index 4014939e97..f44e61faf6 100644 --- a/src/mesh/blockMesh/curvedEdges/polyLine.H +++ b/src/mesh/blockMesh/curvedEdges/polyLine.H @@ -28,7 +28,6 @@ Description A series of straight line segments, which can also be interpreted as a series of control points for splines, etc. -ToDo A future implementation could also handle a closed polyLine. SourceFiles