<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Dear GMSH community,<br>
<br>
I am currently struggling with Spline/BSpline surfaces. <br>
<br>
I am trying to define a surface that is defined by splines over both axes. For an example, see below.<br>
When I only divide the surface into three adjacent strips, I loose the smooth curves in the perpendicular direction. Subdiving the surface in nine equal patches is also not an option, because this will yield linear splines between the defined points, rather
 than the smooth curves over the domain.<br>
<br>
Is this at all possible via a GEO file and if so, how?<br>
Ideally it would be using NURBS surfaces, but I understand that this is currently only supported for imported STEP files and the like.<br>
<br>
You help would be greatly appreciated!<br>
<br>
Best regards,<br>
<br>
Roy Bijster<br>
Structural Optimization and Mechanics<br>
Precision and Microsystems Engineering<br>
Faculty Mechanical, Maritime and Materials Engineering<br>
Delft University of Technology<br>
<br>
<br>
<br>
<br>
// ---- GEO FILE --------------------------------------------<br>
Point(1) = {0, 0, 0}; Point(2) = {1, 0, 0}; Point(3) = {2, 0, 0}; Point(4) = {3, 0, 0};<br>
Point(5) = {0, 1, 0}; Point(6) = {1, 1, 2}; Point(7) = {2, 1, -1}; Point(8) = {3, 1, 0};<br>
Point(9) = {0, 2, 0}; Point(10) = {1, 2, -0.5}; Point(11) = {2, 2, 1}; Point(12) = {3, 2, 0};<br>
Point(13) = {0, 3, 0}; Point(14) = {1, 3, 0}; Point(15) = {2, 3, 0}; Point(16) = {3, 3, 0};<br>
<br>
Spline(1) = {1, 2, 3, 4};<br>
Spline(2) = {5, 6, 7, 8};<br>
Spline(3) = {9, 10, 11, 12};<br>
Spline(4) = {13, 14, 15, 16};<br>
Spline(5) = {1, 5, 9, 13};<br>
Spline(6) = {2, 6, 10, 14};<br>
Spline(7) = {3, 7, 11, 15};<br>
Spline(8) = {4, 8, 12, 16};<br>
// ---- END OF GEO FILE --------------------------------------------<br>
<br>
</div>
</body>
</html>