// Gnurbs - A curve and surface library
// Copyright (C) 2008-2026 Eric Bechet
//
// See the LICENSE file for contributions and license information.
// Please report all bugs and problems to <bechet@cadxfem.org>.
//

#include "nbspline.h"

#include <cmath>
#include <iostream>

void nbspline::P(double u_,npoint& ret) const
{
  // you have to implement this
  ret=npoint(0.,0.,0.,1.);
}


