gluQuadricNormals: Unterschied zwischen den Versionen
Aus DGL Wiki
Flash (Diskussion | Beiträge) K |
DGLBot (Diskussion | Beiträge) K (Bot: konvertiere/korrigiere <BR>) |
||
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
= gluQuadricNormals = | = gluQuadricNormals = | ||
− | + | ||
+ | |||
== Name == | == Name == | ||
'''gluQuadricNormals''' - gibt an, wie die Normalen für ein [[Quadrik]]-Objekte berechnet werden sollen. | '''gluQuadricNormals''' - gibt an, wie die Normalen für ein [[Quadrik]]-Objekte berechnet werden sollen. | ||
− | + | ||
+ | |||
== Delphi-Spezifikation == | == Delphi-Spezifikation == | ||
'''procedure''' gluQuadricNormals(''quadObject'': PGLUquadric; ''normals'': TGLEnum); | '''procedure''' gluQuadricNormals(''quadObject'': PGLUquadric; ''normals'': TGLEnum); | ||
− | + | ||
+ | |||
== Parameter == | == Parameter == | ||
Zeile 21: | Zeile 24: | ||
|} | |} | ||
− | + | ||
+ | |||
== Beschreibung == | == Beschreibung == |
Aktuelle Version vom 22. April 2006, 19:26 Uhr
Inhaltsverzeichnis
gluQuadricNormals
Name
gluQuadricNormals - gibt an, wie die Normalen für ein Quadrik-Objekte berechnet werden sollen.
Delphi-Spezifikation
procedure gluQuadricNormals(quadObject: PGLUquadric; normals: TGLEnum);
Parameter
quadObject | Gibt das Quadrik-Objekt an (erstellt mit gluNewQuadric) |
---|---|
normals | Gibt an wie die Normalen berechnet werden sollen. Akzeptiert werden GLU_NONE, GLU_FLAT und GLU_SMOOTH. |
Beschreibung
gluQuadricNormals gibt an, wie die Normalen für das Quadrik-Objekt quadObject berechnet werden sollen.
normals kann dabei folgende Werte zugewiesen bekommen:
GLU_NONE
- Keine Normalen werden generiert.
GLU_FLAT
- Es wird eine Normale pro Fläche der Quadric generiert.
GLU_SMOOTH
- Es wird für jeden Vertex der Quadric eine Normale generiert.
Standard ist GLU_SMOOTH.
Siehe auch
gluNewQuadric, gluQuadricDrawStyle, gluQuadricOrientation, gluQuadricTexture