enumerazione D2D1_GEOMETRY_RELATION (d2d1.h)

Descrive il modo in cui un oggetto geometry è correlato in modo spaziale a un altro oggetto geometry.

Sintassi

typedef enum D2D1_GEOMETRY_RELATION {
  D2D1_GEOMETRY_RELATION_UNKNOWN = 0,
  D2D1_GEOMETRY_RELATION_DISJOINT = 1,
  D2D1_GEOMETRY_RELATION_IS_CONTAINED = 2,
  D2D1_GEOMETRY_RELATION_CONTAINS = 3,
  D2D1_GEOMETRY_RELATION_OVERLAP = 4,
  D2D1_GEOMETRY_RELATION_FORCE_DWORD = 0xffffffff
} ;

Costanti

 
D2D1_GEOMETRY_RELATION_UNKNOWN
Valore: 0
Impossibile determinare la relazione tra le due geometrie. Questo valore non viene mai restituito da alcun metodo D2D.
D2D1_GEOMETRY_RELATION_DISJOINT
Valore: 1
Le due geometrie non si intersecano affatto.
D2D1_GEOMETRY_RELATION_IS_CONTAINED
Valore: 2
La geometria dell'istanza è interamente contenuta dalla geometria passata.
D2D1_GEOMETRY_RELATION_CONTAINS
Valore: 3
La geometria dell'istanza contiene interamente la geometria passata.
D2D1_GEOMETRY_RELATION_OVERLAP
Valore: 4
Le due geometrie si sovrappongono, ma nessuna delle due geometrie contiene completamente l'altra.
D2D1_GEOMETRY_RELATION_FORCE_DWORD
Valore: 0xffffffff

Requisiti

Requisito Valore
Client minimo supportato Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [app desktop | App UWP]
Server minimo supportato Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [app desktop | App UWP]
Intestazione d2d1.h

Vedi anche

ID2D1Geometry::CompareWithGeometry