Tagged Questions
Non-uniform rational basis spline (NURBS) is a mathematical model commonly used in computer graphics for generating and representing curves and surfaces which offers great flexibility and precision for handling both analytic and freeform shapes.
7
votes
1answer
195 views
GLU NURBS rendered wrongly
EDIT: This is a library bug. I reported it to the HOpenGL mail list.
I use 9-point rectangular method to represent a circle/ellipse as a NURBS.
The points are p1, p2, ..., p9, p9 = p1. They lay as ...
4
votes
2answers
658 views
Slicing a NURBS surface
I have a NURBS surface which has 4 curved edges. (I have the 4 bezier points for the curves)
I'd like to slice the NURBS surface with a slicing-plane thats on-axis (not as advanced as 3DSMAX!), and ...
3
votes
1answer
166 views
Compute a point on a spline surface
I am working on a control algorithm to be run on an embedded system. My programming language is C and the system will be pretty tightly constrained in terms of memory and processing power.
I have a ...
2
votes
1answer
85 views
Repeating texture issue
I am trying to map an image onto a NURBS surface. I have a 13x13 array of equally spaced control points in a (-1, -1), (-1, 1), (1, 1), (1, -1) square. I am trying to map a texture onto the NURBS ...
2
votes
1answer
356 views
How to draw NURBs with OpenGL ES
In OpenGL NURBs can be drawn using evaluators. But it seems evaluators were removed from OpenGL ES spec to make it light weight. In that case, how can one draw NURBs using OpenGL ES API?
2
votes
2answers
526 views
Nurbs Programming tutorial
where can i find some good tutorials on programming nurbs meshes. Google keeps sending me to modeling software tutorials.
2
votes
1answer
470 views
How to create a cubic bezier curve when given N points in 3D?
So I need to find out where the control points would be for a cubic bezier curve when only knowing points on the curve, the points can lie in 3D. It would be ideal if I could do this for any number ...
2
votes
1answer
897 views
GLU NURBS - how to set control point weights?
I'm writing a NURBS class that uses OpenGL's GLU extension to do rendering, but I just realized I have no idea how to set the control point weights. It's not in the Red Book or the GLU documentation, ...
1
vote
2answers
47 views
Linking error when including file containing array
I have the following code in my class object:
void Object::drawSurface()
{
GLUnurbsObj *nurbSurface;
nurbSurface = gluNewNurbsRenderer();
gluNurbsProperty( nurbSurface, ...
1
vote
1answer
124 views
NURBS Curve : maintain length while editing
I'm trying to write an authoring tool for Maya where one of the criterion i have to satisfy is maintain length of a NURBS curve. The authoring tool provides the user the control to edit a NURBS curve ...
1
vote
1answer
192 views
Meaning of knots when drawing a NURBS curve?
I'm using gluNurbsCurve to draw some curves with some control points. I've got the basic setup as described in the red book working correctly and I'm trying to expand on it.
This sample looks like ...
1
vote
1answer
272 views
NURBS on DirectX 11?
Can you render NURBS on the GPU with DirectX 11? I've been reading up on current trends to rendering surfaces like these, but I don't see anything on NURBS.
I found some related references, but ...
1
vote
1answer
242 views
Finding the bounding box (axially aligned) of a parametric range of a 3D NURBS surface
I'll apologize in advance in case this is obvious; I've been unable to find the right terms to put into Google.
What I want to do is to find a bounding volume (AABB is good enough) for an arbitrary ...
0
votes
0answers
28 views
Exporting BSpline/NURBS control polygon and Knot vectors from Blender
Given a Blender file with one BSpline/NURBS surface (for example, Add -> Surface -> NURBS Sphere), I'm interested in exporting its control polygon (the 3D points which define it) and its Knot ...
0
votes
1answer
43 views
Determing intersecting quads?
Is there a possibility to detect whether an object intersects another object in Opengl ?
For example: I have 2 quads(later nurbs),I am moving these quads so that at some point they intersect. Now I ...
0
votes
1answer
99 views
texture does not map the whole nurbs surface
glGenTextures(1, &texName[0]);
glBindTexture(GL_TEXTURE_2D, texName[0]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
...
0
votes
0answers
132 views
NURBS Library supporting trivariate NURBS
Does anyone know a free (as in free beer) C, C++ or even FORTRAN library that supports operations not only NURBS curves and surfaces but also Volumes (i.e. trivariate NURBS)?
I know about open ...
0
votes
0answers
149 views
Nurbs Surface Approximation
I'm trying to approximate a Nurbs surface.
I've chosen a knot insertion method which stops when quads defined by poles are flat enough.
Once I did it I have mi grid of poles and I need to match poles ...