You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
462 B
C++
25 lines
462 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 MathB4.h
|
|
//主要功能:
|
|
// 基础类库
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
class CMathB4
|
|
{
|
|
public:
|
|
CMathB4(void);
|
|
virtual ~CMathB4(void);
|
|
|
|
void GetBD1(double t);
|
|
void Bezier(double t);
|
|
double D0(double *x);
|
|
double VXV(int n, double *v1, double *v2);
|
|
double B4D1(double x);
|
|
|
|
double B[4];
|
|
};
|