1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004-2019 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
#ifndef __VCGLIB_TEXCOORD2__
#define __VCGLIB_TEXCOORD2__
#include <vcg/space/point2.h>
namespace vcg {
/** \addtogroup space */
/*@{*/
/**
\brief Templated class for a storing a set of 2D texture coord plus their texture id.
This class is templated over two parameters:
- the type of the texture coord and
- the number of texcoord to be stored. This is useful when you have multiple
coordinate set for the same entity (e.g. when you have two completely different
parametrizations over the same surface);
This class is intended to be used when multiple textures id are shared over the same surface.
so for each coord the id of the texture is stored. If no texture id is needed see the vcg::TexCoord2Simple class.
*/
template<class T = float, int NMAX = 1>
class TexCoord2
{
public:
typedef Point2<T> PointType;
typedef T ScalarType;
protected:
PointType _t[NMAX];
short _n[NMAX];
public:
TexCoord2(T u, T v){ _n[0]=0; _t[0][0]=u; _t[0][1]=v; }
TexCoord2() { }
inline const PointType &P() const { return _t[0]; }
inline PointType &P() { return _t[0]; }
inline const PointType &P(const int i) const { assert(i>=0 && i<NMAX); return _t[i]; }
inline PointType &P(const int i) { assert(i>=0 && i<NMAX); return _t[i]; }
/// Return a reference to the u texture coordinate of the vertex
inline T & U() { return _t[0][0]; }
/// Return a reference to the v texture coordinate of the vertex
inline T & V() { return _t[0][1]; }
/// Return a const reference to the u texture coordinate of the vertex
inline const T & U() const { return _t[0][0]; }
/// Return a const reference to the v texture coordinate of the vertex
inline const T & V() const { return _t[0][1]; }
inline T & U( int i) { assert(i>=0 && i<NMAX); return _t[i][0]; }
inline T & V( int i) { assert(i>=0 && i<NMAX); return _t[i][1]; }
inline const T & U( int i) const { assert(i>=0 && i<NMAX); return _t[i][0]; }
inline const T & V( int i) const { assert(i>=0 && i<NMAX); return _t[i][1]; }
/// Return a reference to the texture id of the vertex
inline short & N() { return _n[0]; }
/// Return a const reference to the texture id of the vertex
inline short N() const { return _n[0]; }
inline short & N(int i) { assert(i>=0 && i<NMAX); return _n[i]; }
inline short N(int i) const { assert(i>=0 && i<NMAX); return _n[i]; }
template <class S>
inline void Import( const TexCoord2<S> & tc )
{
for (int i=0; i<NMAX; i++)
{
_t[i].Import(tc.P(i));
_n[i] = tc.N(i);
}
}
/* <OLD_METHODS> (lowercase ones). DEPRECATED. TO BE REMOVED SOON.*/
/**/inline T & u() { return _t[0][0]; }
/**/inline T & v() { return _t[0][1]; }
/**/inline const T & u() const { return _t[0][0]; }
/**/inline const T & v() const { return _t[0][1]; }
/**/inline T & u( int i) { return _t[i][0]; }
/**/inline T & v( int i) { return _t[i][1]; }
/**/inline const T & u( int i) const { return _t[i][0]; }
/**/inline const T & v( int i) const { return _t[i][1]; }
/**/
/**/inline short & n() { return _n[0]; }
/**/inline short n() const { return _n[0]; }
/**/
/**/inline short & n( int i) { return _n[i]; }
/**/inline short n( int i) const { return _n[i]; }
/**/
/**/inline Point2<T> & t( int i) { return _t[i]; }
/**/inline Point2<T> t( int i) const { return _t[i]; }
/**/
/**/inline Point2<T> & t() { return _t[0]; }
/**/inline Point2<T> t() const { return _t[0]; }
/* </OLD_METHODS> */
inline bool operator == ( const TexCoord2 & p ) const
{
for(int i=0;i<NMAX;++i)
if(p._t[i] != _t[i] || p._n[i] != _n[i]) return false;
return true;
}
inline bool operator != ( const TexCoord2 & p ) const
{
for(int i=0;i<NMAX;++i)
if(p._t[i] != _t[i] || p._n[i] != _n[i]) return true;
return false;
}
inline bool operator < ( const TexCoord2 & p ) const
{
for(int i=0;i<NMAX;++i)
if(p._t[i] != _t[i]) return p._t[i] < _t[i];
return false;
}
enum { n_coords=NMAX };
};
/**
Templated class for a single 2D texture coord.
*/
template<class T = float >
class TexCoord2Simple
{
public:
typedef Point2<T> PointType;
typedef T ScalarType;
private:
Point2<T> _t;
inline short & static_n() const
{
static short _n = 0;
return _n;
}
public:
inline T & U() { return _t[0]; }
inline T & V() { return _t[1]; }
inline const T & U() const { return _t[0]; }
inline const T & V() const { return _t[1]; }
inline T & U(const int i) { (void)i; assert(i==0); return _t[0]; }
inline T & V(const int i) { (void)i; assert(i==0); return _t[1]; }
inline const T & U(const int i) const { (void)i; assert(i==0); return _t[0]; }
inline const T & V(const int i) const { (void)i; assert(i==0); return _t[1]; }
inline Point2<T> & P(const int i) { (void)i; assert(i==0); return _t; }
inline Point2<T> P(const int i) const { (void)i; assert(i==0); return _t; }
inline Point2<T> & P() { return _t; }
inline Point2<T> P() const { return _t; }
inline short & N() { assert(static_n()==0); return static_n(); }
inline short N() const { assert(static_n()==0); return 0; }
inline short & N(const int i) { (void)i; assert(i==0); return static_n(); }
inline short N(const int i) const { (void)i; assert(i==0); return 0; }
/* <OLD_METHODS> (lowercase ones). DEPRECATED. TO BE REMOVED SOON.*/
inline T & u() { return _t[0]; }
inline T & v() { return _t[1]; }
inline const T & u() const { return _t[0]; }
inline const T & v() const { return _t[1]; }
inline T & u(const int i) { (void)i; assert(i==0); return _t[0]; }
inline T & v(const int i) { (void)i; assert(i==0); return _t[1]; }
inline const T & u(const int i) const { (void)i; assert(i==0); return _t[0]; }
inline const T & v(const int i) const { (void)i; assert(i==0); return _t[1]; }
inline Point2<T> & t(const int i) { (void)i; assert(i==0); return _t; }
inline Point2<T> t(const int i) const { (void)i; assert(i==0); return _t; }
inline Point2<T> & t() { return _t; }
inline Point2<T> t() const { return _t; }
inline short & n() { assert(static_n()==0); return static_n(); }
inline short n() const { assert(static_n()==0); return 0; }
inline short & n(const int i) { (void)i; assert(i==0); return static_n(); }
inline short n(const int i) const { (void)i; assert(i==0); return 0; }
/* </OLD_METHODS> */
inline bool operator == ( TexCoord2Simple const & p ) const
{
return _t==p._t;
}
enum { n_coords=1};
};
typedef TexCoord2<float> TexCoord2f;
typedef TexCoord2<double> TexCoord2d;
/*@}*/
}
#endif
|