Subversion Repositories gelsvn

Rev

Rev 568 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 568 Rev 572
Line 11... Line 11...
11
#include <HMesh/AttributeVector.h>
11
#include <HMesh/AttributeVector.h>
12
 
12
 
13
#ifndef __POLARIZE_H__
13
#ifndef __POLARIZE_H__
14
#define __POLARIZE_H__
14
#define __POLARIZE_H__
15
 
15
 
16
void polarize_mesh(HMesh::Manifold& m, HMesh::VertexAttributeVector<float>& fun, float vmin, float vmax, const int divisions);
16
void polarize_mesh(HMesh::Manifold& m, HMesh::VertexAttributeVector<double>& fun, double vmin, double vmax, const int divisions, HMesh::VertexAttributeVector<double>& parametrization);
17
 
17
 
18
void make_height_fun(const HMesh::Manifold& m, HMesh::VertexAttributeVector<float>& fun, 
18
void make_height_fun(const HMesh::Manifold& m, HMesh::VertexAttributeVector<double>& fun, 
19
                     float& vmin, float &vmax);
19
                     double& vmin, double &vmax);
20
 
20
 
21
#endif
21
#endif