include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Thu, 16 Apr 2009 00:23:01 -0700
branchdev
changeset 131 d9e050258358
parent 19 efa14432761a
permissions -rw-r--r--
Alphashapes and Python bindings * converted alphashapes2d to the new format * added Python bindings for alphashapes * added sample alphashapes.py that dynamically distinguishes between 2D and 3D

#ifndef __NUMBER_TRAITS_H__
#define __NUMBER_TRAITS_H__

template<class NumberType_>
class number_traits
{
	public:
		typedef							NumberType_									NumberType;

		static NumberType&				normalize(NumberType& n)					{ return n; }
};

#endif