plplot绘制3d图

需要用到的plplot主要函数:

// Allocates a block of memory for use as a 2-d grid of PLFLT's.
    void Alloc2dGrid( PLFLT ***f, PLINT nx, PLINT ny );
// Frees a block of memory allocated with plAlloc2dGrid().
    void Free2dGrid( PLFLT **f, PLINT nx, PLINT ny );

// Plots a mesh representation of the function z[x][y].
    void mesh( const PLFLT *x, const PLFLT *y, const PLFLT * const *z, PLINT nx, PLINT ny, PLINT opt );
// Plots a mesh representation of the function z[x][y] with contour.
    void meshc( const PLFLT *x, const PLFLT *y, const PLFLT * const *z, PLINT nx, PLINT ny, PLINT opt,
                const PLFLT *clevel, PLINT nlevel );

程序源码如下:

#include "plc++demos.h"

#ifdef PL_USE_NAMESPACE
using namespace std;
#endif
plstream           *pls;
const int   x_PointNum   = 35;
const int   y_PointNum   = 46;
const int   LEVELS = 10;
const int   opt[]  = { 3, 3 };
const PLFLT alt[] = { 33.0, 17.0 };
const PLFLT az[] = { 24.0, 115.0 };

const char  *title[] = {
	"#frPLplot Example 11 - Alt=33, Az=24, Opt=3",
	"#frPLplot Example 11 - Alt=17, Az=115, Opt=3"
};
void cmap1_init()
{
	PLFLT *i   = new PLFLT[2];
	PLFLT *h   = new PLFLT[2];
	PLFLT *l   = new PLFLT[2];
	PLFLT *s   = new PLFLT[2];
	bool  *rev = new bool[2];

	i[0] = 0.0;       // left boundary
	i[1] = 1.0;       // right boundary

	h[0] = 240;       // blue -> green -> yellow ->
	h[1] = 0;         // -> red

	l[0] = 0.6;
	l[1] = 0.6;

	s[0] = 0.8;
	s[1] = 0.8;

	rev[0] = false;       // interpolate on front side of colour wheel.
	rev[1] = false;       // interpolate on front side of colour wheel.

	pls->scmap1n( 256 );// Set number of colors in cmap 1
	pls->scmap1l( false, 2, i, h, l, s, rev );

	delete[] i;
	delete[] h;
	delete[] l;
	delete[] s;
	delete[] rev;
}

// Does a series of mesh plots for a given data set, with different viewing
// options in each plot.
int main( int argc, const char **argv )
{
	int   i, j, k;

	PLFLT *x = new PLFLT[ x_PointNum ];
	PLFLT *y = new PLFLT[ y_PointNum ];
	PLFLT **z;
	PLFLT zmin = 1E9, zmax = -1E-9;

	PLFLT xx, yy;
	int   nlevel  = LEVELS;
	PLFLT *clevel = new PLFLT[LEVELS];
	PLFLT step;
	pls = new plstream();
	// Parse and process command line arguments.
	pls->parseopts( &argc, argv, PL_PARSE_FULL );
	// Initialize plplot.
	pls->sdev("qtwidget");
	//pls->init();
	pls->star(4,2);
	//  Allocates a block of memory for use as a 2-d grid of PLFLT's.
	pls->Alloc2dGrid( &z, x_PointNum, y_PointNum );

	for ( i = 0; i < x_PointNum; i++ )
		x[i] = 3. * (PLFLT) ( i - ( x_PointNum / 2 ) ) / (PLFLT) ( x_PointNum / 2 );

	for ( j = 0; j < y_PointNum; j++ )
		y[j] = 3. * (PLFLT) ( j - ( y_PointNum / 2 ) ) / (PLFLT) ( y_PointNum / 2 );

	for ( i = 0; i < x_PointNum; i++ )
	{
		xx = x[i];
		for ( j = 0; j < y_PointNum; j++ )
		{
			yy      = y[j];
			z[i][j] = 3. * ( 1. - xx ) * ( 1. - xx ) * exp( -( xx * xx ) - ( yy + 1. ) * ( yy + 1. ) ) -
				10. * ( xx / 5. - pow( (double) xx, 3. ) - pow( (double) yy, 5. ) ) * exp( -xx * xx - yy * yy ) -
				1. / 3. * exp( -( xx + 1 ) * ( xx + 1 ) - ( yy * yy ) );
			if ( false ) // Jungfraujoch/Interlaken
			{
				if ( z[i][j] < -1. )
					z[i][j] = -1.;
			}
			if ( zmin > z[i][j] )
				zmin = z[i][j];
			if ( zmax < z[i][j] )
				zmax = z[i][j];
		}
	}

	step = ( zmax - zmin ) / ( nlevel + 1 );
	for ( i = 0; i < nlevel; i++ )
		clevel[i] = zmin + step + step * i;

	cmap1_init();
	for ( k = 0; k < 2; k++ )
	{
		for ( i = 0; i < 4; i++ )
		{
			pls->adv( 0 );
			pls->col(Red);
			pls->vpor( 0.0, 1.0, 0.0, 0.9 );
			pls->wind( -1.0, 1.0, -1.0, 1.5 );
			//尺寸范围
			pls->w3d( 1.0, 1.0, 1.2, -3.0, 3.0, -3.0, 3.0, zmin, zmax,
				alt[k], az[k] );
			//box set
			pls->box3( "bnstu", "x axis", 0.0, 0,
				"bnstu", "y axis", 0.0, 0,
				"bcdmnstuv", "z axis", 0.0, 4 );

			pls->col(Yellow);
			// wireframe plot
			if ( i == 0 )
				pls->mesh( x, y, z, x_PointNum, y_PointNum, opt[k] );//单色显示

			// magnitude colored wireframe plot
			else if ( i == 1 )
				pls->mesh( x, y, z, x_PointNum, y_PointNum, opt[k] | MAG_COLOR );//等高颜色渐变显示

			// magnitude colored wireframe plot with sides
			else if ( i == 2 )
			{
				pls->plot3d( x, y, z, x_PointNum, y_PointNum, opt[k] | MAG_COLOR ,true );
			}

			// magnitude colored wireframe plot with base contour
			else if ( i == 3 )
				pls->meshc( x, y, z, x_PointNum, y_PointNum, opt[k] | MAG_COLOR | BASE_CONT,
				clevel, nlevel );

			pls->col(Green);
			pls->mtex( "t", 1.0, 0.5, 0.5, title[k] );
		}
	}

	// Frees a block of memory allocated with plAlloc2dGrid().
	pls->Free2dGrid( z, x_PointNum, y_PointNum );

	delete[] x;
	delete[] y;
	delete[] clevel;

	delete pls;
	return 0;
}


vs2010工程地址:plplot_3d

参考文献:http://plplot.sourceforge.net/examples.php?demo=11&lbind=C

技术选型 【后端】:Java 【框架】:springboot 【前端】:vue 【JDK版本】:JDK1.8 【服务器】:tomcat7+ 【数据库】:mysql 5.7+ 项目包含前后台完整源码。 项目都经过严格调试,确保可以运行! 具体项目介绍可查看博主文章或私聊获取 助力学习实践,提升编程技能,快来获取这份宝贵的资源吧! 在当今快速发展的信息技术领域,技术选型是决定一个项目成功与否的重要因素之一。基于以下的技术栈,我们为您带来了一份完善且经过实践验证的项目资源,让您在学习和提升编程技能的道路上事半功倍。以下是该项目的技术选型和其组件的详细介绍。 在后端技术方面,我们选择了Java作为编程语言。Java以其稳健性、跨平台性和丰富的库支持,在企业级应用中处于领导地位。项目采用了流行的Spring Boot框架,这个框架以简化Java企业级开发而闻名。Spring Boot提供了简洁的配置方式、内置的嵌入式服务器支持以及强大的生态系统,使开发者能够更高效地构建和部署应用。 前端技术方面,我们使用了Vue.js,这是一个用于构建用户界面的渐进式JavaScript框架。Vue以其易上手、灵活和性能出色而受到开发者的青睐,它的组件化开发思想也有助于提高代码的复用性和可维护性。 项目的编译和运行环境选择了JDK 1.8。尽管Java已经推出了更新的版本,但JDK 1.8依旧是一种成熟且稳定的选择,广泛应用于各类项目中,确保了兼容性和稳定性。 在服务器方面,本项目部署在Tomcat 7+之上。Tomcat是Apache软件基金会下的一个开源Servlet容器,也是应用最为广泛的Java Web服务器之一。其稳定性和可靠的性能表现为Java Web应用提供了坚实的支持。 数据库方面,我们采用了MySQL 5.7+。MySQL是一种高效、可靠且使用广泛的关系型数据库管理系统,5.7版本在性能和功能上都有显著的提升。 值得一提的是,该项目包含了前后台的完整源码,并经过严格调试,确保可以顺利运行。通过项目的学习和实践,您将能更好地掌握从后端到前端的完整开发流程,提升自己的编程技能。欢迎参考博主的详细文章或私信获取更多信息,利用这一宝贵资源来推进您的技术成长之路!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值