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 #ifndef _math_isosurf_triangle_h
00029 #define _math_isosurf_triangle_h
00030
00031 #ifdef __GNUC__
00032 #pragma interface
00033 #endif
00034
00035 #include <math/isosurf/tricoef.h>
00036 #include <math/isosurf/edge.h>
00037
00038 class Triangle: public RefCount {
00039 protected:
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049 unsigned int _order;
00050 unsigned int _orientation0;
00051 unsigned int _orientation1;
00052 unsigned int _orientation2;
00053 Ref<Edge> _edges[3];
00054 Ref<Vertex> *_vertices;
00055 public:
00056 enum {max_order = 10};
00057
00058 Triangle(const Ref<Edge>& v1, const Ref<Edge>& v2, const Ref<Edge>& v3,
00059 unsigned int orient0 = 0);
00060 Ref<Edge> edge(int i) { return _edges[i]; };
00061 int contains(const Ref<Edge>&) const;
00062 unsigned int orientation(int i) const
00063 {
00064 return i==0?_orientation0:i==1?_orientation1:_orientation2;
00065 }
00066 unsigned int orientation(const Ref<Edge>&) const;
00067 ~Triangle();
00068 void add_edges(AVLSet<Ref<Edge> >&);
00069 void add_vertices(AVLSet<Ref<Vertex> >&);
00070
00071
00072
00073
00074 void interpolate(const Ref<TriInterpCoef>&,
00075 double r,double s,const Ref<Vertex>&v, SCVector3& dA);
00076 void interpolate(double r,double s,const Ref<Vertex>&v, SCVector3& dA);
00077 void interpolate(double r,double s,const Ref<Vertex>&v, SCVector3& dA,
00078 const Ref<Volume> &vol, double isovalue);
00079
00080
00081
00082
00083
00084 Ref<Vertex> vertex(int i);
00085
00086 double flat_area();
00087
00088
00089 void flip();
00090
00091 unsigned int order() const { return _order; }
00092
00093 void set_order(int order, const Ref<Volume>&vol,double isovalue);
00094 };
00095
00096
00097
00098 class TriangleIntegrator: public DescribedClass {
00099 private:
00100 int _n;
00101 double* _r;
00102 double* _s;
00103 double* _w;
00104
00105 Ref<TriInterpCoef> **coef_;
00106 protected:
00107 void set_r(int i,double r);
00108 void set_s(int i,double s);
00109 void set_w(int i,double w);
00110 void init_coef();
00111 void clear_coef();
00112 public:
00113 TriangleIntegrator(const Ref<KeyVal>&);
00114 TriangleIntegrator(int n);
00115 virtual ~TriangleIntegrator();
00116 inline double w(int i) { return _w[i]; }
00117 inline double r(int i) { return _r[i]; }
00118 inline double s(int i) { return _s[i]; }
00119 inline int n() { return _n; }
00120 virtual void set_n(int n);
00121 Ref<TriInterpCoef> coef(int order, int i) { return coef_[order-1][i]; }
00122 };
00123
00124
00125 class GaussTriangleIntegrator: public TriangleIntegrator {
00126 private:
00127 void init_rw(int order);
00128 public:
00129 GaussTriangleIntegrator(const Ref<KeyVal>&);
00130 GaussTriangleIntegrator(int order);
00131 ~GaussTriangleIntegrator();
00132 void set_n(int n);
00133 };
00134
00135 #endif
00136
00137
00138
00139
00140