implicit.h
来自「大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CH」· C头文件 代码 · 共 29 行
H
29 行
#ifndef _math_isosurf_implicit_h#define _math_isosurf_implicit_htypedef struct point { /* a three-dimensional point */ double x, y, z; /* its coordinates */} POINT;typedef struct vertex { /* surface vertex */ POINT position, normal; /* position and surface normal */} VERTEX;typedef struct vertices { /* list of vertices in polygonization */ int count, max; /* # vertices, max # allowed */ VERTEX *ptr; /* dynamically allocated */} VERTICES;#define TET 0 /* use tetrahedral decomposition */#define NOTET 1 /* no tetrahedral decomposition */extern "C" { char * polygonize(double(*function)(double,double,double), double size, int bounds, double x, double y, double z, int(*triproc)(int,int,int,VERTICES), int mode);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?