简介

The two most common methods of representing curves and surfaces in geometric modeling are implicit equations and parametric functions.// 两个最基础的方法在表示曲面和形状在几何建模是隐式表示和显示表示

隐式表示

The implicit equation of a curve lying in the xy plane has the form f(x, y) = 0.
This equation describes an implicit relationship between the x and y coordinates
of the points lying on the curve. For a given curve the equation is unique up to
a multiplicative constant. An example is the circle of unit radius centered at the
origin, specified by the equation f(x, y) = x2 + y 2 - 1 = 0 (Figure 1.1).
// 类似 f(x, y) = x2 + y 2 - 1 = 0

显示表示

In parametric form, each of the coordinates of a point on the curve is represented separately as an explicit function of an independent parameter
C(u) = (x(u),y(u))
// 类似 C(u) = (x(u), y(u))

转载于:https://www.cnblogs.com/eat-too-much/p/11349884.html

Logo

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。

更多推荐