UVVertSet Class Reference
 
 
 
UVVertSet Class Reference

#include <meshdelta.h>

Inheritance diagram for UVVertSet:
MaxHeapOperators

Class Description

This class represents the notion of a mesh edit UVW vertex assignment.

The public data members provide the index of the vertex as well as the UVWVert.

See also:
Class Mesh, Class Point3.

Public Member Functions

  UVVertSet ()
  UVVertSet (DWORD i, UVVert p)
  ~UVVertSet ()
UVVertSet operator= (const UVVertSet &from)

Public Attributes

DWORD  vid
  The index of the vertex.
UVVert  v
  The UVW vertex.

Constructor & Destructor Documentation

UVVertSet ( ) [inline]
Remarks:
Constructor.
{}
UVVertSet ( DWORD  i,
UVVert  p 
) [inline]
Remarks:
Constructor. The data members are initialized to the values passed.
{ vid=i; v=p; }
~UVVertSet ( ) [inline]
Remarks:
Destructor.
{}

Member Function Documentation

UVVertSet& operator= ( const UVVertSet from ) [inline]
Remarks:
Assignment operator.
{ vid=from.vid; v=from.v; return (*this); }

Member Data Documentation

DWORD vid

The index of the vertex.