Gambas文档
编译和安装
错误消息
代码片段
待办事项
废弃的组件
教程
开发环境文档
开发者文档
名词解释
如何操作
说明
维基手册
维基搜索
维基许可协议
文档
应用程序仓库
语言概览
语言索引
主题
组件
gb
gb.args
gb.cairo
gb.chart
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.data
gb.db
gb.db.form
gb.db.mysql
gb.db.odbc
gb.db.postgresql
gb.db.sqlite2
gb.db.sqlite3
gb.dbus
gb.dbus.trayicon
gb.debug
gb.desktop
gb.desktop.x11
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.htmlview
gb.form.mdi
gb.form.print
gb.form.terminal
gb.gmp
gb.gsl
gb.gtk
gb.gtk3
gb.gtk3.opengl
gb.gtk3.webview
gb.gui
gb.gui.qt
gb.gui.qt.ext
gb.gui.trayicon
gb.gui.webview
gb.hash
gb.highlight
gb.image
gb.image.effect
gb.image.io
gb.inotify
gb.logging
gb.map
gb.media
gb.media.form
gb.mime
gb.mongodb
gb.mysql
gb.ncurses
gb.net
gb.net.curl
gb.net.pop3
gb.net.smtp
gb.opengl
Gl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.openssl
gb.option
gb.pcre
gb.pdf
gb.poppler
gb.qt4
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt4.webview
gb.qt5
gb.qt5.ext
gb.qt5.opengl
gb.qt5.webview
gb.qt6
gb.qt6.ext
gb.qt6.opengl
gb.qt6.webview
gb.report
gb.report2
gb.sdl
gb.sdl2
gb.sdl2.audio
gb.settings
gb.signal
gb.term
gb.test
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.web.form
gb.web.gui
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
最近的修改

Gl.Begin (gb.opengl)

Static Sub Begin ( Primitive As Integer )

Delimit the vertices of a primitive or a group of like primitives.

Parameters

mode

Specifies the primitive or primitives that will be created from vertices presented between Gl.Begin and the subsequent Gl.End. Ten symbolic constants are accepted: Gl.POINTS, Gl.LINES, Gl.LINE_STRIP, Gl.LINE_LOOP, Gl.TRIANGLES, Gl.TRIANGLE_STRIP, Gl.TRIANGLE_FAN, Gl.QUADS, Gl.QUAD_STRIP, and Gl.POLYGON.

Description

Gl.Begin and Gl.End delimit the vertices that define a primitive or a group of like primitives. Gl.Begin accepts a single argument that specifies in which of ten ways the vertices are interpreted. Taking n as an integer count starting at one, and N as the total number of vertices specified, the interpretations are as follows:
Gl.POINTS

Treats each vertex as a single point. Vertex n defines point n. N points are drawn.
Gl.LINES

Treats each pair of vertices as an independent line segment. Vertices 2 n - 1 and 2 n define line n. N 2 lines are drawn.
Gl.LINE_STRIP

Draws a connected group of line segments from the first vertex to the last. Vertices n and n + 1 define line n. N - 1 lines are drawn.
Gl.LINE_LOOP

Draws a connected group of line segments from the first vertex to the last, then back to the first. Vertices n and n + 1 define line n. The last line, however, is defined by vertices N and 1 . N lines are drawn.
Gl.TRIANGLES

Treats each triplet of vertices as an independent triangle. Vertices 3 n - 2 , 3 n - 1 , and 3 n define triangle n. N 3 triangles are drawn.
Gl.TRIANGLE_STRIP

Draws a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. For odd n, vertices n, n + 1 , and n + 2 define triangle n. For even n, vertices n + 1 , n, and n + 2 define triangle n. N - 2 triangles are drawn.
Gl.TRIANGLE_FAN

Draws a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. Vertices 1 , n + 1 , and n + 2 define triangle n. N - 2 triangles are drawn.
Gl.QUADS

Treats each group of four vertices as an independent quadrilateral. Vertices 4 n - 3 , 4 n - 2 , 4 n - 1 , and 4 n define quadrilateral n. N 4 quadrilaterals are drawn.
Gl.QUAD_STRIP

Draws a connected group of quadrilaterals. One quadrilateral is defined for each pair of vertices presented after the first pair. Vertices 2 n - 1 , 2 n , 2 n + 2 , and 2 n + 1 define quadrilateral n. N 2 - 1 quadrilaterals are drawn. Note that the order in which vertices are used to construct a quadrilateral from strip data is different from that used with independent data.
Gl.POLYGON

Draws a single, convex polygon. Vertices 1 through N define this polygon.

Only a subset of GL commands can be used between Gl.Begin and Gl.End. The commands are Gl.Vertex, Gl.Color, Gl.SecondaryColor, Gl.Index, Gl.Normal, Gl.FogCoord, Gl.TexCoord, Gl.MultiTexCoord, Gl.VertexAttrib, Gl.EvalCoord, Gl.EvalPoint, Gl.ArrayElement, Gl.Material, and Gl.EdgeFlag. Also, it is acceptable to use Gl.CallList or Gl.CallLists to execute display lists that include only the preceding commands. If any other GL command is executed between Gl.Begin and Gl.End, the error flag is set and the command is ignored.

Regardless of the value chosen for mode, there is no limit to the number of vertices that can be defined between Gl.Begin and Gl.End. Lines, triangles, quadrilaterals, and polygons that are incompletely specified are not drawn. Incomplete specification results when either too few vertices are provided to specify even a single primitive or when an incorrect multiple of vertices is specified. The incomplete primitive is ignored; the rest are drawn.

The minimum specification of vertices for each primitive is as follows: 1 for a point, 2 for a line, 3 for a triangle, 4 for a quadrilateral, and 3 for a polygon. Modes that require a certain multiple of vertices are Gl.LINES (2), Gl.TRIANGLES (3), Gl.QUADS (4), and Gl.QUAD_STRIP (2).

Errors

Gl.INVALID_ENUM is generated if mode is set to an unaccepted value.

Gl.INVALID_OPERATION is generated if Gl.Begin is executed between a Gl.Begin and the corresponding execution of Gl.End.

Gl.INVALID_OPERATION is generated if Gl.End is executed without being preceded by a Gl.Begin.

Gl.INVALID_OPERATION is generated if a command other than Gl.Vertex, Gl.Color, Gl.SecondaryColor, Gl.Index, Gl.Normal, Gl.FogCoord, Gl.TexCoord, Gl.MultiTexCoord, Gl.VertexAttrib, Gl.EvalCoord, Gl.EvalPoint, Gl.ArrayElement, Gl.Material, Gl.EdgeFlag, Gl.CallList, or Gl.CallLists is executed between the execution of Gl.Begin and the corresponding execution Gl.End.

Execution of Gl.EnableClientState, Gl.DisableClientState, Gl.EdgeFlagPointer, Gl.FogCoordPointer, Gl.TexCoordPointer, Gl.ColorPointer, Gl.SecondaryColorPointer, Gl.IndexPointer, Gl.NormalPointer, Gl.VertexPointer, Gl.VertexAttribPointer, Gl.InterleavedArrays, or Gl.PixelStore is not allowed after a call to Gl.Begin and before the corresponding call to Gl.End, but an error may or may not be generated.

See Also

Gl.ArrayElement, Gl.CallList, Gl.CallLists, Gl.Color, Gl.EdgeFlag, Gl.EvalCoord, Gl.EvalPoint, Gl.FogCoord, Gl.Index, Gl.Material, Gl.MultiTexCoord, Gl.Normal, Gl.SecondaryColor, Gl.TexCoord, Gl.Vertex, Gl.VertexAttrib


Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB.

➡ See original documentation