Action_Thermostats
Adding_MD_integration_tests
Adding_StructOpt_integration_tests
AutomationFragmentation_failures
Candidate_v1.6.1
ChemicalSpaceEvaluator
Enhanced_StructuralOptimization
Enhanced_StructuralOptimization_continued
Exclude_Hydrogens_annealWithBondGraph
Fix_Verbose_Codepatterns
ForceAnnealing_with_BondGraph
ForceAnnealing_with_BondGraph_continued
ForceAnnealing_with_BondGraph_continued_betteresults
ForceAnnealing_with_BondGraph_contraction-expansion
Gui_displays_atomic_force_velocity
JobMarket_RobustOnKillsSegFaults
JobMarket_StableWorkerPool
PythonUI_with_named_parameters
Recreated_GuiChecks
StoppableMakroAction
TremoloParser_IncreasedPrecision
Line | |
---|
1 |
|
---|
2 | #ifndef _math_isosurf_implicit_h
|
---|
3 | #define _math_isosurf_implicit_h
|
---|
4 |
|
---|
5 | typedef struct point { /* a three-dimensional point */
|
---|
6 | double x, y, z; /* its coordinates */
|
---|
7 | } POINT;
|
---|
8 |
|
---|
9 | typedef struct vertex { /* surface vertex */
|
---|
10 | POINT position, normal; /* position and surface normal */
|
---|
11 | } VERTEX;
|
---|
12 |
|
---|
13 | typedef struct vertices { /* list of vertices in polygonization */
|
---|
14 | int count, max; /* # vertices, max # allowed */
|
---|
15 | VERTEX *ptr; /* dynamically allocated */
|
---|
16 | } VERTICES;
|
---|
17 |
|
---|
18 | #define TET 0 /* use tetrahedral decomposition */
|
---|
19 | #define NOTET 1 /* no tetrahedral decomposition */
|
---|
20 |
|
---|
21 | extern "C" {
|
---|
22 | char * polygonize(double(*function)(double,double,double),
|
---|
23 | double size, int bounds,
|
---|
24 | double x, double y, double z,
|
---|
25 | int(*triproc)(int,int,int,VERTICES), int mode);
|
---|
26 | }
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.