⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testaxes.c

📁 seismic software,very useful
💻 C
字号:
/* Copyright (c) Colorado School of Mines, 1990./* All rights reserved.                       */#include "psplot.h"main(){	beginps();	newpage("1",1);	psAxesBox(		100.0,100.0,400.0,500.0,		1.71,3.14,0.0,0.0,		0.0,0.0,1,NONE,"Horizontal Axis",		-10.0,31.0,0.0,0.0,		0.0,0.0,1,NONE,"Vertical Axis",		"Times-Roman",12.0,		"Title","Times-Bold",24.0,		NORMAL);	showpage();	newpage("2",2);	psAxesBox(		100.0,100.0,400.0,500.0,		0.0,1000.0,0.0,0.0,		0.0,0.0,5,DOT,"Horizontal Axis",		10.0,0.0,0.0,0.0,		0.0,0.0,5,DASH,"Vertical Axis",		"Courier-Bold",18,		"Title","Helvetica-Bold",24,		NORMAL);	showpage();	newpage("3",3);	psAxesBox(		100.0,100.0,400.0,500.0,		0.0,1000.0,0.0,0.0,		0.0,0.0,5,DOT,"Horizontal Axis",		10.0,0.0,0.0,0.0,		0.0,0.0,5,DASH,"Vertical Axis",		"Courier-Bold",18,		"Title","Helvetica-Bold",24,		SEISMIC);	showpage();	endps();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -