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

📄 pointset.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef POINTSET_H#define POINTSET_H#include <stdio.h>/**  This class groups data about point setson the elements, where the user requires  to compute stresses or strains. It is used for the mechprep preprocessor*/class pointset{  public:	 pointset();	 ~pointset();	 long read(FILE *in);	 long print(FILE *out);	 long   n;      ///< number	of set	 long   np;     ///< number of point	 long   ncoord; ///< number of point coordinate	 double *coord; ///< array with coordinates of each point};#endif

⌨️ 快捷键说明

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