I'm having some trouble with Bézier surfaces and I was hoping someone could help me. Question is rather simple: lets say we have 2 Bézier curves with control points: P00,P10,P20,P30 and second P00,P01,P02,P03. So, we have 2 cubic curves which have one control point (P00) in common. My question is: are those two curves and their control points enough data to construct a Bézier surface? I have studied the formula, and I got the procedure, but what I can not figure out is: can I compute the other control points (P10,P11,P12,P13 and so on), or they must be given as input in order for surface to be defined? And if I can compute them, how? I know this might sound like stupid question but im interested in application of these surfaces, meaning I'm not a mathematician, so i skipped some steps :)
2026-03-25 20:41:13.1774471273
Describing Bézier surfaces
534 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in SURFACES
- Surface by revolution
- A new type of curvature multivector for surfaces?
- Regular surfaces with boundary and $C^1$ domains
- Hyperplane line bundle really defined by some hyperplane
- 2D closed surface such that there's always a straight line to a point?
- parametrized surface are isometric if all corresponding curves have same length
- Klein bottle and torus in mod $p$ homology
- How can I prove that the restricted parametrization of a surface in $\mathbb{R}^{3}$ ia a diffeomorphism?
- A diffeomorphism between a cylinder and a one-sheeted hyperboloid
- Involution of the 3 and 4-holed torus and its effects on some knots and links
Related Questions in BEZIER-CURVE
- Sweet spots for cubic Bezier curve.
- C2 continuous Bezier contour.
- Design an algorithm to check if point lies on a Bézier curve
- What is the equation of a reflected Bézier curve?
- Solving the bezier curve equation is giving wrong value
- Bézier control points for drawing an interpolating cubic spline *function*
- Tangent of Cubic Bezier curve at end point
- How to tell if a 2d point is within a set of Bézier curves?
- Converting polynomial interpolations to Bézier splines
- Bezier Curve and derivatives
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
If $\mathbf{A}: [0,1] \to \mathbb{R}^3$ and $\mathbf{B}: [0,1] \to \mathbb{R}^3$ are any two parametric curves whatsoever, and $\mathbf{A}(0) = \mathbf{B}(0) = \mathbf{C}$, then you can define a surface $\mathbf{S}(u,v)$ by $$ \mathbf{S}(u,v) = \mathbf{A}(u) + \mathbf{B}(v) - \mathbf{C} \quad\quad (0 \le u \le 1 \; ; \; 0 \le u \le 1) $$ Note that $\mathbf{S}(u,0) = \mathbf{A}(u)$ for all $u$, so one edge of this surface is the curve $\mathbf{A}$. Similarly, $\mathbf{S}(0,v) = \mathbf{B}(v)$ for all $v$, so the adjacent edge is the curve $\mathbf{B}$.
Conceptually, the surface is formed by "sweeping" the curve $\mathbf{A}$ along the curve $\mathbf{B}$, keeping its orientation fixed. Or, equivalently, you can sweep $\mathbf{B}$ along $\mathbf{A}$; the situation is symmetric, so you'll get the same result either way. These things are sometimes known as "translational sweep surfaces" in the literature. See, for example "The NURBS Book" by Piegl and Tiller, section 10.4.
Now the specific case of cubic Bézier curves that you asked about.
Suppose $\mathbf{A}$ is a cubic Bézier curve with control points $\mathbf{P}_{0}$, $\mathbf{P}_{1}$, $\mathbf{P}_{2}$, $\mathbf{P}_{3}$, and $\mathbf{B}$ is a cubic Bézier curve with control points $\mathbf{Q}_{0}$, $\mathbf{Q}_{1}$, $\mathbf{Q}_{2}$, $\mathbf{Q}_{3}$. And let's assume that $\mathbf{P}_{0} = \mathbf{Q}_{0} = \mathbf{C}$, so that the curves have a common start point. Then the translational sweep surface described above is actually a bicubic Bézier surface, and its 16 control points $\mathbf{R}_{ij}$ are given by: $$ \mathbf{R}_{ij} = \mathbf{P}_{i} + \mathbf{Q}_{j} - \mathbf{C} \quad \quad (i = 0,1,2,3\; ; \; j = 0,1,2,3) $$ Here's an example of a simple surface produced this way:
There are many other ways to define a surface from two curves. For example, as you are sweeping one curve along the other, you can rotate it in some way, rather than keeping its orientation fixed.