isogeometric_analysis 0.3.1

Create implementing algorithms related to Isogeometric Analysis. Bezier, B-spline, NURBS, numerical integration and isogeometric approach to PDE approximation.
Documentation
/*
 * Project: Approximation and Finite Elements in Isogeometric Problems
 * Author:  Luca Carlon
 * Date:    2021.11.01
 *
 * Copyright (c) 2021 Luca Carlon. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

pub use self::bezier::Bernstein;
pub use self::bezier::BezierCurve;
pub use self::bezier::BezierSurf;
pub use self::bezier::RatBezierCurve;
pub use self::bezier::BezierCircle;
pub use self::bezier::BezierCurveDemo1;
pub use self::bezier::BezierFactory;
pub use self::teapot::TEAPOT_PACTHES;
pub use self::teapot::TEAPOT_VERTICES;
pub use self::teapot::BezierTeapot;
pub use self::teacup::TEACUP_PACTHES;
pub use self::teacup::TEACUP_VERTICES;
pub use self::teacup::BezierTeacup;
pub use self::teaspoon::TEASPOON_PACTHES;
pub use self::teaspoon::TEASPOON_VERTICES;
pub use self::teaspoon::BezierTeaspoon;
pub use self::utahdata::read_utah_format;
mod bezier;
mod teapot;
mod teaspoon;
mod teacup;
mod utahdata;