pointset.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 25 行

H
25
字号
#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 + =
减小字号Ctrl + -
显示快捷键?