zoukankan      html  css  js  c++  java
  • 图形学中的 显示表示 和 隐式表示

    简介

    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))

    Hope is a good thing,maybe the best of things,and no good thing ever dies.----------- Andy Dufresne
  • 相关阅读:
    多维数组的索引与切片
    多维数组
    开学第一课Java考试
    大一第九周学习体会
    大一第八周学习体会
    大一第七周学习体会
    大一第六周学习体会
    大一第五周学习体会
    《大道至简》读后感
    大一暑假第四周学习体会
  • 原文地址:https://www.cnblogs.com/eat-too-much/p/11349884.html
Copyright © 2011-2022 走看看