Recent content by xuzhongxing

  1. X

    why does GeomFill class break the creation of surface into three procedures?

    This piece of code is doing what is called multisection surface creation in typical CAD programs like catia. The real approximation work is done GeomFill_AppSurf class. The first part is adding multiple section curves that are expected to be interpolated by the approximated surface. The final...
  2. X

    Constrained filling (PLATE)

    The algorithm used in occt plate module is the thin-plate spline basis function interpolation described in the book Scattered Data Approximation by Professor Wendland. With that theory in mind, the code is less obscure to read. The most esoteric function in the module is the...
Top