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.EvalMesh2 (gb.opengl)

Static Sub EvalMesh2 ( Mode As Integer, I1 As Integer, I2 As Integer, J1 As Integer, J2 As Integer )

Compute a one- or two-dimensional grid of points or lines.

Parameters

mode

In Gl.EvalMesh1, specifies whether to compute a one-dimensional mesh of points or lines. Symbolic constants Gl.POINT and Gl.LINE are accepted.
i1, i2

Specify the first and last integer values for grid domain variable i.

Parameters

mode

In Gl.EvalMesh2, specifies whether to compute a two-dimensional mesh of points, lines, or polygons. Symbolic constants Gl.POINT, Gl.LINE, and Gl.FILL are accepted.
i1, i2

Specify the first and last integer values for grid domain variable i.
j1, j2

Specify the first and last integer values for grid domain variable j.

Description

Gl.MapGrid and Gl.EvalMesh are used in tandem to efficiently generate and evaluate a series of evenly-spaced map domain values. Gl.EvalMesh steps through the integer domain of a one- or two-dimensional grid, whose range is the domain of the evaluation maps specified by Gl.Map1 and Gl.Map2. mode determines whether the resulting vertices are connected as points, lines, or filled polygons.

In the one-dimensional case, Gl.EvalMesh1, the mesh is generated as if the following code fragment were executed:

glBegin( type );
for ( i = i1; i <= i2; i += 1 )
glEvalCoord1( 


i
·
Δ
u

+

u
1


 );
glEnd();

where

Δ u u 2 - u 1 n

and n, u 1 , and u 2 are the arguments to the most recent Gl.MapGrid1 command. type is Gl.POINTS if mode is Gl.POINT, or Gl.LINES if mode is Gl.LINE.

The one absolute numeric requirement is that if i n , then the value computed from i · Δ u + u 1 is exactly u 2 .

In the two-dimensional case, Gl.EvalMesh2, let .cp Δ u u 2 - u 1 n

Δ v v 2 - v 1 m

where n, u 1 , u 2 , m, v 1 , and v 2 are the arguments to the most recent Gl.MapGrid2 command. Then, if mode is Gl.FILL, the Gl.EvalMesh2 command is equivalent to:

for ( j = j1; j < j2; j += 1 ) {
glBegin( GL_QUAD_STRIP );
for ( i = i1; i <= i2; i += 1 ) {
glEvalCoord2( 


i
·
Δ
u

+

u
1

,

j
·
Δ
v

+

v
1


 );
glEvalCoord2( 


i
·
Δ
u

+

u
1

,




j
+
1



·
Δ
v

+

v
1


 );
}
glEnd();
}

If mode is Gl.LINE, then a call to Gl.EvalMesh2 is equivalent to:

for ( j = j1; j <= j2; j += 1 ) {
glBegin( GL_LINE_STRIP );
for ( i = i1; i <= i2; i += 1 )
glEvalCoord2( 


i
·
Δ
u

+

u
1

,

j
·
Δ
v

+

v
1


 );
glEnd();
}
for ( i = i1;  i <= i2; i += 1 ) {
glBegin( GL_LINE_STRIP );
for ( j = j1; j <= j1; j += 1 )
glEvalCoord2( 


i
·
Δ
u

+

u
1

,

j
·
Δ
v

+

v
1


 );
glEnd();
}

And finally, if mode is Gl.POINT, then a call to Gl.EvalMesh2 is equivalent to:

glBegin( GL_POINTS );
for ( j = j1; j <= j2; j += 1 )
for ( i = i1; i <= i2; i += 1 )
glEvalCoord2( 


i
·
Δ
u

+

u
1

,

j
·
Δ
v

+

v
1


 );
glEnd();

In all three cases, the only absolute numeric requirements are that if i n , then the value computed from i · Δ u + u 1 is exactly u 2 , and if j m , then the value computed from j · Δ v + v 1 is exactly v 2 .

Errors

Gl.INVALID_ENUM is generated if mode is not an accepted value.

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

Associated Gets

Gl.Get with argument Gl.MAP1_GRID_DOMAIN

Gl.Get with argument Gl.MAP2_GRID_DOMAIN

Gl.Get with argument Gl.MAP1_GRID_SEGMENTS

Gl.Get with argument Gl.MAP2_GRID_SEGMENTS

See also

Gl.Begin, Gl.EvalCoord, Gl.EvalPoint, Gl.Map1, Gl.Map2, Gl.MapGrid

See original documentation on OpenGL website