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

📄 ibgcontrol.c

📁 有限元学习研究用源代码(老外的),供科研人员参考
💻 C
字号:
/* last edit: Ilja Schmelzer --------------  4-APR-1995 11:33:47.53	*/
/************************************************************************/
/*                                                                      */
/*  <<< I B G >>> - Intersection - Based Grid generation package 	*/
/*                                                                      */
/*  Version 1.1 by Ilja Schmelzer   schmelzer@iaas-berlin.d400.de       */
/*                                                                      */
/*  to be distributed under IBG license conditions (see "readme.ibg")	*/
/*                                                                      */
/************************************************************************/
/*
	This file contains two trivial calls. They are designed to
	give the user control over the parameters controlling the
  	grid output.

	ibgControl() will be called at the begin of ibgOutput(). So it allows
	to change the output parameters before each output operation.

	ibgControlInit will be called once at the end of ibgApplicationInit().
	So useful defaults are already available.
*/
#include "ibg.h"
#include "ibgoutput.h"
#include "ibgapplication.h"

static int Controlcount = 1;
void ibgControl()
{
/* here a window- or language-interface may be called */
/* per default, for 2D grids the inner cells (triangles) and for
   3D grids the boundary cells (triangles) will be written.
   To change this behavior to put out the inner cells (tetrahedra)
   uncomment the following line:

 ibgOutputType[ibgSRegion] = ibgTrue;
 */
 return;
}

void ibgControlInit()
{
/* here a window- or language-interface may be initialized */
 ibgFileMode = ibgFileModSimplex;
 return;
}

⌨️ 快捷键说明

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