Qt 4.8
Public Types | Public Functions | Public Variables | List of all members
QTriangulator< T >::ComplexToSimple::Event Struct Reference

Public Types

enum  Type { Upper, Lower }
 

Public Functions

bool operator< (const Event &other) const
 

Public Variables

int edge
 
QPodPoint point
 
Type type
 

Detailed Description

template<typename T>
struct QTriangulator< T >::ComplexToSimple::Event

Definition at line 1374 of file qtriangulator.cpp.

Enumerations

◆ Type

Functions

◆ operator<()

template<typename T >
bool QTriangulator< T >::ComplexToSimple::Event::operator< ( const Event other) const
inline

Definition at line 2368 of file qtriangulator.cpp.

2369 {
2370  if (point == other.point)
2371  return type < other.type; // 'Lower' has higher priority than 'Upper'.
2372  return other.point < point;
2373 }

Properties

◆ edge

template<typename T>
int QTriangulator< T >::ComplexToSimple::Event::edge

◆ point

template<typename T>
QPodPoint QTriangulator< T >::ComplexToSimple::Event::point

◆ type

template<typename T>
Type QTriangulator< T >::ComplexToSimple::Event::type

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