搜索资源列表
NURBS-curve
- 这是NURBS曲线的绘制程序,在MATLAB-2008a环境下进行编写,包含了几个基函数子程序。可以通过调节控制顶点和点的权重来调节曲面形状。 -This is a NURBS curve drawing program, in the MATLAB-2008a environments prepared, including a number of basis function subprogram. Can be controlled by adjusting the weight o
Complex.curve.drawing.program
- 复杂曲线的绘图程序,可以绘制参数样条曲线,贝齐埃曲线 ,B样条曲线,实现绘制,修改,删除等多种功能并显示基函数。CAGD专业非常经典的程序-Complex curve drawing program, you can map parameters spline curve, Pui Maiziere curve, B-spline curve, realize mapping, modify, delete and display a variety of functions, such as
CAGD_B_Spline_3
- B样条曲线的MFC实现,包括准均匀、非均匀、分段bezier及相关的基函数。-B-spline curve MFC implementation, including quasi-uniform, non-uniform, piecewise bezier and associated basis functions.
Bezier
- 一个非常简单的三次贝齐尔Bezier曲线生成算法,由给定的控制点通过Bernstein基函数生成。-A very simple cubic Bezier Bezier curve generation algorithm, from given control points generated by Bernstein basis functions.
byf_BasisFuns
- deCasteljaul算法求非零B样条基函数,极大减少了运算量-the deCasteljaul algorithm for non-zero B-spline basis functions, greatly reducing the amount of computation
ba
- 自己写的b样条基函数的公式计算和画图程序,输入节点向量和基函数次数即可-B-spline basis function to write their own formula and drawing program, the number of input node vector basis function can be
a-progeam-of-RBF
- 此文件主要用于求径极基函数,可用于求曲面内极大值、极小值,力求曲面包络。-This file is used to find the diameter of the main pole base function can be used to find the surface maxima, minima, and strive to music enveloping.
CDC
- 在Windows平台上,应用程序的图形设备接口(graphics device interface,GDI)被抽象为设备上下文(Device Context,DC)。 在微软基类库MFC中,CDC类是定义设备上下文对象的基类,所有绘图函数都在CDC基类中定义。当需要输出文字或图形时,就需要调用CDC类的成员函数,这些成员函数具备输出文本、绘制图形的功能。 本节讲解的例程全部在TestView.cpp文件的 void CTestView::OnDraw(CDC* pDC)函数中实现。