Raw File
Surface.h
// Geometric Tools, LLC
// Copyright (c) 1998-2012
// Distributed under the Boost Software License, Version 1.0.

#pragma once

#include "NURBSGlobal.h"

namespace NURBS
{

template <typename Real>
class Surface
{
public:

protected:
    Surface ();
};

typedef Surface<float> Surfacef;
typedef Surface<double> Surfaced;

}

back to top