solvespace/src/srf
whitequark 20d87d93c5 Add const qualifiers to functions where trivially possible.
This will allow us in future to accept `const T &` anywhere it's
necessary to reduce the amount of copying.

This commit is quite conservative: it does not attempt very hard to
refactor code that performs incidental mutation. In particular
dogd and caches are not marked with the `mutable` keyword.
dogd will be eliminated later, opening up more opportunities to
add const qualifiers.

This commit also doesn't introduce any uses of the newly added const
qualifers. This will be done later.
2016-05-25 03:22:54 +00:00
..
boolean.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
curve.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
merge.cpp Rewrite declarations of form f(void) as f(). 2016-05-20 12:43:20 +00:00
ratpoly.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
raycast.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
surface.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
surface.h Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
surfinter.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00
triangulate.cpp Add const qualifiers to functions where trivially possible. 2016-05-25 03:22:54 +00:00