QWT API (中文) 7.0.1
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_gridmapping.h
1#ifndef qwt3d_gridmapping_h
2#define qwt3d_gridmapping_h
3
4#include "qwt3d_mapping.h"
5
6namespace Qwt3D {
7
8class SurfacePlot;
9
19class QWT3D_EXPORT GridMapping : public Mapping
20{
21public:
22 // Constructs GridMapping object w/o assigned SurfacePlot
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
34protected:
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 */
作用于矩形网格的映射抽象基类
Definition qwt3d_gridmapping.h:20
通用映射的抽象基类
Definition qwt3d_mapping.h:20
表示表面的类
Definition qwt3d_surfaceplot.h:22
由两个三元组张成的平行六面体
Definition qwt3d_types.h:382