surfaces Flashcards
(63 cards)
What are the three main surface representations in 3D?
Explicit, parametric, and implicit.
What is the explicit form of a surface?
x₃ = f(x₁, x₂)
What is a key limitation of explicit surface representation?
It cannot represent vertical surfaces or closed shapes like spheres.
What is a parametric surface?
A surface defined as f(u, v) = [x₁(u,v), x₂(u,v), x₃(u,v)], using two parameters.
What is the parametric form of a sphere?
f(θ, φ) = r · [sinφ·cosθ, sinφ·sinθ, cosφ]
What is an implicit surface?
A surface defined as the set of points where f(x₁, x₂, x₃) = 0.
What does f(x) < 0 mean in an implicit surface?
The point is inside the surface.
What does f(x) > 0 mean in an implicit surface?
The point is outside the surface.
What is the implicit equation of a sphere of radius r?
f(x) = x₁² + x₂² + x₃² - r² = 0
How can you model complex surfaces using implicit functions?
By combining simple shapes using min (union) or max (intersection) operations.
What is the union operation in implicit modelling?
f(x) = min(f₁(x), f₂(x))
What is the intersection operation in implicit modelling?
f(x) = max(f₁(x), f₂(x))