QWT API (中文)
7.0.1
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
src
plot3d
qwt3d_gridmapping.h
1
#ifndef qwt3d_gridmapping_h
2
#define qwt3d_gridmapping_h
3
4
#include "qwt3d_mapping.h"
5
6
namespace
Qwt3D {
7
8
class
SurfacePlot;
9
19
class
QWT3D_EXPORT
GridMapping
:
public
Mapping
20
{
21
public
:
22
// Constructs GridMapping object w/o assigned SurfacePlot
23
GridMapping
();
24
25
// Sets number of rows and columns
26
void
setMesh(
unsigned
int
columns,
unsigned
int
rows);
27
// Sets u-v domain boundaries
28
void
setDomain(
double
minu,
double
maxu,
double
minv,
29
double
maxv);
30
// Restrict the mappings range to the parallelepiped
31
void
restrictRange(
32
Qwt3D::ParallelEpiped
const
&);
33
34
protected
:
35
Qwt3D::ParallelEpiped
range_p;
36
Qwt3D::SurfacePlot
*plotwidget_p;
37
unsigned
int
umesh_p, vmesh_p;
38
double
minu_p, maxu_p, minv_p, maxv_p;
39
};
40
41
}
// ns
42
43
#endif
/* include guarded */
Qwt3D::GridMapping
作用于矩形网格的映射抽象基类
Definition
qwt3d_gridmapping.h:20
Qwt3D::Mapping
通用映射的抽象基类
Definition
qwt3d_mapping.h:20
Qwt3D::SurfacePlot
表示表面的类
Definition
qwt3d_surfaceplot.h:22
Qwt3D::ParallelEpiped
由两个三元组张成的平行六面体
Definition
qwt3d_types.h:382
制作者
1.9.8