From 621591c812fb304e43ded5348b00c2cd6f375300 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Tue, 28 Aug 2001 15:44:21 +0000 Subject: [PATCH] *** empty log message *** --- benchmarks/1d/nurbs.geo | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 benchmarks/1d/nurbs.geo diff --git a/benchmarks/1d/nurbs.geo b/benchmarks/1d/nurbs.geo new file mode 100644 index 0000000000..3a6771d441 --- /dev/null +++ b/benchmarks/1d/nurbs.geo @@ -0,0 +1,18 @@ + +lc = 1; + +Point(1) = {0,0,0,lc}; +Point(2) = {1,0,0,lc}; +Point(3) = {1,1,0,lc}; +Point(4) = {0,1,0,lc}; + +// A knot represents a parameter interval (and can be 0). +// There are (N + D + 1) knots +// A point with a knot multiplicity of (D+1) belongs to the nurbs + +Nurbs(1) = {1,2,3,4} Knots {0,0,0,0, 1, 1,1,1} Order 3; + + +//Nurbs(1) = {1,2,3,4} Knots {0,0,0,0, 1,1,1,1} Order 3; +//Nurbs(2) = {1,2,3,4} Knots {0,0,1, 1 } Order 3; + -- GitLab