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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
// Copyright (c) 2005 INRIA (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version 1.0.
// See the file LICENSE.QPL distributed with CGAL.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.2-branch/Surface_mesh_parameterization/include/CGAL/Param_mesh_patch_vertex.h $
// $Id: Param_mesh_patch_vertex.h 29081 2006-03-06 13:32:35Z lsaboret $
//
//
// Author(s) : Laurent Saboret, Pierre Alliez, Bruno Levy
#ifndef CGAL_PARAM_MESH_PATCH_VERTEX_H
#define CGAL_PARAM_MESH_PATCH_VERTEX_H
#include <CGAL/surface_mesh_parameterization_assertions.h>
#include <list>
CGAL_BEGIN_NAMESPACE
// Forward reference
template<class ParameterizationPatchableMesh_3> class Param_mesh_patch_vertex_const_handle;
/// The class Param_mesh_patch_vertex represents a vertex
/// of a Parameterization_mesh_patch_3<ParameterizationPatchableMesh_3> mesh.
///
/// Implementation note:
/// A Param_mesh_patch_vertex object is basically a handle to a
/// ParameterizationPatchableMesh_3::Vertex + its position / seam.
/// Param_mesh_patch_vertex comparison methods compare the pointers.
///
template<class ParameterizationPatchableMesh_3>
class Param_mesh_patch_vertex
{
// Private types
private:
typedef Param_mesh_patch_vertex Self;
// Public types
public:
/// Export template parameter type
typedef ParameterizationPatchableMesh_3 Adaptor;
// Public operations
public:
/// Default constructor
Param_mesh_patch_vertex()
{
m_vertex = NULL;
m_last_cw_neighbor = NULL;
m_first_cw_neighbor = NULL;
}
/// Constructor:
/// - for an INNER adaptor vertex, last_cw_neighbor and first_cw_neighbor
/// must be NULL
/// - for a SEAM/MAIN BORDER vertex, [first_cw_neighbor, last_cw_neighbor]
/// defines the range of the valid neighbors of adaptor_vertex (included).
explicit Param_mesh_patch_vertex(
typename Adaptor::Vertex_handle adaptor_vertex,
typename Adaptor::Vertex_handle last_cw_neighbor = typename Adaptor::Vertex_handle(),
typename Adaptor::Vertex_handle first_cw_neighbor = typename Adaptor::Vertex_handle())
{
CGAL_surface_mesh_parameterization_assertion(adaptor_vertex != NULL);
CGAL_surface_mesh_parameterization_assertion( (last_cw_neighbor == NULL) ==
(first_cw_neighbor == NULL) );
m_vertex = adaptor_vertex;
m_last_cw_neighbor = last_cw_neighbor;
m_first_cw_neighbor = first_cw_neighbor;
}
/// Copy constructor
Param_mesh_patch_vertex(const Self& hdl)
{
m_vertex = hdl.m_vertex;
m_last_cw_neighbor = hdl.m_last_cw_neighbor;
m_first_cw_neighbor = hdl.m_first_cw_neighbor;
}
/// operator =()
Self& operator =(const Self& hdl)
{
m_vertex = hdl.m_vertex;
m_last_cw_neighbor = hdl.m_last_cw_neighbor;
m_first_cw_neighbor = hdl.m_first_cw_neighbor;
return *this;
}
/// Comparison
bool operator==(const Param_mesh_patch_vertex& vertex) const {
return m_vertex == vertex.m_vertex
&& m_last_cw_neighbor == vertex.m_last_cw_neighbor
&& m_first_cw_neighbor == vertex.m_first_cw_neighbor;
}
bool operator!=(const Param_mesh_patch_vertex& vertex) const {
return ! (*this == vertex);
}
/// Get content
typename Adaptor::Vertex_handle vertex() {
return m_vertex;
}
typename Adaptor::Vertex_const_handle vertex() const {
return m_vertex;
}
typename Adaptor::Vertex_handle last_cw_neighbor() {
return m_last_cw_neighbor;
}
typename Adaptor::Vertex_const_handle last_cw_neighbor() const {
return m_last_cw_neighbor;
}
typename Adaptor::Vertex_handle first_cw_neighbor() {
return m_first_cw_neighbor;
}
typename Adaptor::Vertex_const_handle first_cw_neighbor() const {
return m_first_cw_neighbor;
}
// Fields
private:
/// The decorated vertex
typename Adaptor::Vertex_handle m_vertex;
/// [m_first_cw_neighbor, m_last_cw_neighbor] defines the range of the valid
/// neighbors of m_vertex (included) if m_vertex is on the main border/seam
/// (NULL if inner vertex)
typename Adaptor::Vertex_handle m_last_cw_neighbor;
typename Adaptor::Vertex_handle m_first_cw_neighbor;
}; // Param_mesh_patch_vertex
/// Param_mesh_patch_vertex_handle represents a handle to a
/// Param_mesh_patch_vertex object, thus has the same behavior
/// as Param_mesh_patch_vertex* pointer type.
///
/// Design Pattern:
/// Param_mesh_patch_vertex_handle is a Bridge [GHJV95].
///
/// Implementation note:
/// A Param_mesh_patch_vertex_handle contains in fact a
/// Param_mesh_patch_vertex object, which is basically
/// a handle to a ParameterizationPatchableMesh_3::Vertex.
/// Param_mesh_patch_vertex_handle comparison methods simply compare
/// the address of the ParameterizationPatchableMesh_3::Vertex pointed by the handles.
///
template<class ParameterizationPatchableMesh_3>
class Param_mesh_patch_vertex_handle
{
// Private types
private:
typedef Param_mesh_patch_vertex_handle Self;
// Public types
public:
/// Export template parameter type
typedef ParameterizationPatchableMesh_3 Adaptor;
// Iterator types
typedef Param_mesh_patch_vertex<ParameterizationPatchableMesh_3>
Vertex;
typedef Vertex value_type;
typedef std::ptrdiff_t difference_type;
typedef std::size_t size_type;
typedef Vertex& reference;
typedef Vertex* pointer;
// Public operations
public:
/// Constructor from ParameterizationPatchableMesh_3::Vertex pointer
Param_mesh_patch_vertex_handle(Vertex* ptr = NULL)
{
if (ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = *ptr;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
}
/// Extra constructor that will create the Parameterization_mesh_patch_3<ParameterizationPatchableMesh_3>::Vertex on the fly
/// - for an INNER adaptor vertex, last_cw_neighbor and first_cw_neighbor
/// must be NULL
/// - for a SEAM/MAIN BORDER vertex, [first_cw_neighbor, last_cw_neighbor]
/// defines the range of the valid neighbors of adaptor_vertex (included).
explicit Param_mesh_patch_vertex_handle(
typename Adaptor::Vertex_handle adaptor_vertex,
typename Adaptor::Vertex_handle last_cw_neighbor = typename Adaptor::Vertex_handle(),
typename Adaptor::Vertex_handle first_cw_neighbor = typename Adaptor::Vertex_handle())
{
CGAL_surface_mesh_parameterization_assertion(adaptor_vertex != NULL);
m_vertex = Vertex(adaptor_vertex, last_cw_neighbor, first_cw_neighbor);
m_ptr = &m_vertex;
}
/// Copy constructor
Param_mesh_patch_vertex_handle(const Self& hdl)
{
if (hdl.m_ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = hdl.m_vertex;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
}
/// operator =()
Self& operator =(const Self& hdl)
{
if (hdl.m_ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = hdl.m_vertex;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
return *this;
}
/// Compare patch vertices instead of patch vertex pointers (two patch
/// vertex handles are equal iff they point to the same adaptor vertex)
bool operator==(const Self& hdl) const
{
if (m_ptr == NULL || hdl.m_ptr == NULL)
return m_ptr == hdl.m_ptr;
else
return *m_ptr == *(hdl.m_ptr);
}
bool operator!=(const Self& hdl) const { return ! (*this == hdl); }
/// Comparison to NULL pointer
bool operator==(CGAL_NULL_TYPE ptr) const {
CGAL_surface_mesh_parameterization_assertion(ptr == NULL);
return m_ptr == NULL;
}
bool operator!=(CGAL_NULL_TYPE ptr) const { return ! (*this == ptr); }
pointer operator->() const { return m_ptr; }
reference operator*() const { return *m_ptr; }
operator Param_mesh_patch_vertex_const_handle<Adaptor>() const {
return m_ptr;
}
// Fields
private:
/// The actual pointer
pointer m_ptr;
/// Internal Parameterization_mesh_patch_3<ParameterizationPatchableMesh_3> vertex
/// pointed to by m_ptr (except if NULL)
Vertex m_vertex;
}; // Param_mesh_patch_vertex_handle
/// Param_mesh_patch_vertex_const_handle represents a handle to a
/// Param_mesh_patch_vertex object, thus has the same behavior
/// as const Param_mesh_patch_vertex* pointer type.
///
/// Design Pattern:
/// Param_mesh_patch_vertex_const_handle is a Bridge [GHJV95].
///
/// Implementation note:
/// A Param_mesh_patch_vertex_const_handle contains in fact a Param_mesh_patch_vertex
/// object, which is basically a handle to a ParameterizationPatchableMesh_3::Vertex.
/// Param_mesh_patch_vertex_const_handle comparison methods basically compare
/// the address of the ParameterizationPatchableMesh_3::Vertex pointed by the handles.
///
template<class ParameterizationPatchableMesh_3>
class Param_mesh_patch_vertex_const_handle
{
// Private types
private:
typedef Param_mesh_patch_vertex_const_handle
Self;
// Public types
public:
/// Export template parameter type
typedef ParameterizationPatchableMesh_3 Adaptor;
// Iterator types
typedef Param_mesh_patch_vertex<ParameterizationPatchableMesh_3>
Vertex;
typedef Vertex value_type;
typedef std::ptrdiff_t difference_type;
typedef std::size_t size_type;
typedef const Vertex& reference;
typedef const Vertex* pointer;
// Public operations
public:
/// Constructor from ParameterizationPatchableMesh_3::Vertex pointer
Param_mesh_patch_vertex_const_handle(const Vertex* ptr = NULL)
{
if (ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = *ptr;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
}
/// Extra constructor that will create the Parameterization_mesh_patch_3<ParameterizationPatchableMesh_3>::Vertex on the fly
/// - for an INNER adaptor vertex, last_cw_neighbor and first_cw_neighbor
/// must be NULL
/// - for a SEAM/MAIN BORDER vertex, [first_cw_neighbor, last_cw_neighbor]
/// defines the range of the valid neighbors of adaptor_vertex (included).
explicit Param_mesh_patch_vertex_const_handle(
typename Adaptor::Vertex_const_handle adaptor_vertex,
typename Adaptor::Vertex_const_handle last_cw_neighbor =typename Adaptor::Vertex_const_handle(),
typename Adaptor::Vertex_const_handle first_cw_neighbor=typename Adaptor::Vertex_const_handle())
{
CGAL_surface_mesh_parameterization_assertion(adaptor_vertex != NULL);
m_vertex = Vertex((typename Adaptor::Vertex*)&*adaptor_vertex,
(typename Adaptor::Vertex*)&*last_cw_neighbor,
(typename Adaptor::Vertex*)&*first_cw_neighbor);
m_ptr = &m_vertex;
}
/// Copy constructor
Param_mesh_patch_vertex_const_handle(const Self& hdl)
{
if (hdl.m_ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = hdl.m_vertex;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
}
/// operator =()
Self& operator =(const Self& hdl)
{
if (hdl.m_ptr == NULL)
{
m_vertex = Vertex();
m_ptr = NULL;
}
else
{
m_vertex = *hdl.m_ptr;
m_ptr = &m_vertex;
}
assert(m_ptr == NULL || m_ptr == &m_vertex);
return *this;
}
/// Compare patch vertices instead of patch vertex pointers (two patch
/// vertex handles are equal iff they point to the same adaptor vertex)
bool operator==(const Self& hdl) const
{
if (m_ptr == NULL || hdl.m_ptr == NULL)
return m_ptr == hdl.m_ptr;
else
return *m_ptr == *(hdl.m_ptr);
}
bool operator!=(const Self& hdl) const { return ! (*this == hdl); }
/// Comparison to NULL pointer
bool operator==(CGAL_NULL_TYPE ptr) const {
CGAL_surface_mesh_parameterization_assertion(ptr == NULL);
return m_ptr == NULL;
}
bool operator!=(CGAL_NULL_TYPE ptr) const { return ! (*this == ptr); }
pointer operator->() const { return m_ptr; }
reference operator*() const { return *m_ptr; }
// Fields
private:
/// The actual pointer
pointer m_ptr;
/// Internal Parameterization_mesh_patch_3<ParameterizationPatchableMesh_3> vertex
/// pointed to by m_ptr (except if NULL)
Vertex m_vertex;
}; // Param_mesh_patch_vertex_const_handle
CGAL_END_NAMESPACE
#endif //CGAL_PARAM_MESH_PATCH_VERTEX_H
|