use double as default RealType for subdividers

This commit is contained in:
Janis Born
2017-01-11 17:26:28 +01:00
parent a1ee66ac2f
commit 3b906e5119
9 changed files with 16 additions and 17 deletions

View File

@@ -99,7 +99,7 @@ namespace Uniform { // BEGIN_NS_DECIMATER
*
* L. Kobbelt, <a href="http://www-i8.informatik.rwth-aachen.de/publications/downloads/sqrt3.pdf">"Sqrt(3) subdivision"</a>, Proceedings of SIGGRAPH 2000.
*/
template <typename MeshType, typename RealType = float>
template <typename MeshType, typename RealType = double>
class Sqrt3T : public SubdividerT< MeshType, RealType >
{
public: