isogeometric_analysis/bezier/
mod.rs

1/*
2 * Project: Approximation and Finite Elements in Isogeometric Problems
3 * Author:  Luca Carlon
4 * Date:    2021.11.01
5 *
6 * Copyright (c) 2021 Luca Carlon. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 3 of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * Lesser General Public License for more details.
17 * 
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 */
22
23pub use self::bezier::Bernstein;
24pub use self::bezier::BezierCurve;
25pub use self::bezier::BezierSurf;
26pub use self::bezier::RatBezierCurve;
27pub use self::bezier::BezierCircle;
28pub use self::bezier::BezierCurveDemo1;
29pub use self::bezier::BezierFactory;
30pub use self::teapot::TEAPOT_PACTHES;
31pub use self::teapot::TEAPOT_VERTICES;
32pub use self::teapot::BezierTeapot;
33pub use self::teacup::TEACUP_PACTHES;
34pub use self::teacup::TEACUP_VERTICES;
35pub use self::teacup::BezierTeacup;
36pub use self::teaspoon::TEASPOON_PACTHES;
37pub use self::teaspoon::TEASPOON_VERTICES;
38pub use self::teaspoon::BezierTeaspoon;
39pub use self::utahdata::read_utah_format;
40mod bezier;
41mod teapot;
42mod teaspoon;
43mod teacup;
44mod utahdata;