Qt 4.8
Public Functions | Public Variables | List of all members
QVertexSet< T > Struct Template Reference

Public Functions

QVertexSet< T > & operator= (const QVertexSet< T > &other)
 
 QVertexSet ()
 
 QVertexSet (const QVertexSet< T > &other)
 

Public Variables

QVector< T > indices
 
QVector< qrealvertices
 

Detailed Description

template<typename T>
struct QVertexSet< T >

Definition at line 191 of file qtriangulator.cpp.

Constructors and Destructors

◆ QVertexSet() [1/2]

template<typename T>
QVertexSet< T >::QVertexSet ( )
inline

Definition at line 193 of file qtriangulator.cpp.

193 { }

◆ QVertexSet() [2/2]

template<typename T>
QVertexSet< T >::QVertexSet ( const QVertexSet< T > &  other)
inline

Definition at line 194 of file qtriangulator.cpp.

194 : vertices(other.vertices), indices(other.indices) { }
QVector< qreal > vertices
QVector< T > indices

Functions

◆ operator=()

template<typename T>
QVertexSet<T>& QVertexSet< T >::operator= ( const QVertexSet< T > &  other)
inline

Definition at line 195 of file qtriangulator.cpp.

195 {vertices = other.vertices; indices = other.indices; return *this;}
QVector< qreal > vertices
QVector< T > indices

Properties

◆ indices

template<typename T>
QVector<T> QVertexSet< T >::indices

◆ vertices

template<typename T>
QVector<qreal> QVertexSet< T >::vertices

The documentation for this struct was generated from the following file: