00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __double_vector
00043 #define __double_vector
00044 typedef real vector[4];
00045 #endif
00046 #ifndef __struct_solid
00047 #define __struct_solid
00048 typedef struct solid STYPE;
00049 #endif
00050 #ifndef __struct_face
00051 #define __struct_face
00052 typedef struct face FTYPE;
00053 #endif
00054 #ifndef __struct_loop
00055 #define __struct_loop
00056 typedef struct loop LTYPE;
00057 #endif
00058 #ifndef __struct_edge
00059 #define __struct_edge
00060 typedef struct edge ETYPE;
00061 #endif
00062 #ifndef __struct_halfedge
00063 #define __struct_halfedge
00064 typedef struct halfedge HTYPE;
00065 #endif
00066 #ifndef __struct_vertex
00067 #define __struct_vertex
00068 typedef struct vertex VTYPE;
00069 #endif
00070
00071 int MSD_lowEdgVtxContainment(VPTYPE, VPTYPE, VPTYPE);
00072 int MSD_lowFacVtxContainment(FPTYPE, VPTYPE);
00073 int MSD_lowFacVtxCoordContainment(FPTYPE, VPTYPE, int);
00074 int MSD_lowLooVtxBoundary(LPTYPE, VPTYPE);
00075 int MSD_lowLooVtxContainment(LPTYPE, VPTYPE, int);
00076 int MSD_lowLooBoxContainment(LPTYPE, VPTYPE, int);
00077 int MSD_lowSolVtxContainment(SPTYPE, VPTYPE);
00078 int MSD_lowVtxVtxContainment(VPTYPE, VPTYPE);
00079 int MSD_lowFacFacIdentical(FPTYPE, FPTYPE);
00080 int MSD_lowFacFacContainment(FPTYPE, FPTYPE);
00081 int MSD_lowFacFacEqualEqs(FPTYPE, FPTYPE);
00082 int MSD_lowFacFacOppositeEqs(FPTYPE, FPTYPE);
00083 int MSD_lowEdgEdgColinear(EPTYPE, EPTYPE);
00084 int MSD_lowNullEdge(HPTYPE);
00085 int MSD_lowEdgEdgIntersection(VPTYPE, VPTYPE, VPTYPE, VPTYPE, int, real *, real *);
00086 int MSD_lowVtxEdgIntersection(VPTYPE, VPTYPE, VPTYPE, real *);