|
standard/bgntrim(3) -- delimit a NURBS surface trimming loop
|
none |
Tk/bind(3) -- Arrange for X events to invoke Tcl scripts
|
The bind command associates Tcl scripts with X events. If all three arguments are specified, bind will arrange for script (a Tcl script) to be evaluated whenever the event(s) given by sequence occur in the window(s) identified by tag. If script is prefixed with a ``+'', then it is appended to any existing binding for sequence; otherwise script replaces any existing binding. If script is an empty string then the current binding for sequence is destroyed, leaving sequence unbound. In all of the ... |
bind(3n) -- bind a name to a socket
|
bind() assigns a name to an unnamed socket. When a socket is created with socket(3N), it exists in a name space (address family) but has no name assigned. bind() requests that the name pointed to by name be assigned to the socket. |
Tk/bindtable(3) -- invoke scripts in response to X events
|
Tcl_Interp *interp (in) Interpreter to use when invoking bindings in binding table. Also used for returning results and errors from binding procedures. Tk_BindingTable bindingTable (in) Token for binding table; must have been returned by some previous call to Tk_CreateBindingTable. ClientData object (in) Identifies object with which binding is associated. char *eventString (in) String describing event sequence. char *script (in) Tcl script to invoke when binding triggers. int append (in) Non-zer... |
Tk/bindtags(3) -- Determine which bindings apply to a window, and order of evaluation
|
When a binding is created with the bind command, it is associated either with a particular window such as .a.b.c, a class name such as Button, the keyword all, or any other string. All of these forms are called binding tags. Each window contains a list of binding tags that determine how events are processed for the window. When an event occurs in a window, it is applied to each of the window's tags in order: for each tag, the most specific binding that matches the given tag and event is execute... |
complib/BISECT(3) -- EISPACK routine. This subroutine finds those eigenvalues of a TRIDIAGONAL SYMMETRIC matrix which lie in a spec
|
On INPUT N is the order of the matrix. EPS1 is an absolute error tolerance for the computed eigenvalues. If the input EPS1 is non-positive, it is reset for each submatrix to a default value, namely, minus the product of the relative machine precision and the 1-norm of the submatrix. D contains the diagonal elements of the input matrix. E contains the subdiagonal elements of the input matrix in its last N-1 positions. E(1) is arbitrary. E2 contains the squares of the corresponding elements of E. ... |
Tk/bitmap(3) -- Images that display two colors
|
A bitmap is an image whose pixels can display either of two colors or be transparent. A bitmap image is defined by four things: a background color, a foreground color, and two bitmaps, called the source and the mask. Each of the bitmaps specifies 0/1 values for a rectangular array of pixels, and the two bitmaps must have the same dimensions. For pixels where the mask is zero, the image displays nothing, producing a transparent effect. For other pixels, the image displays the foreground color if ... |
f90/bit_size(3) -- Returns the number of bits in an integer in the bit manipulation model
|
UNICOS, UNICOS/mk, and IRIX systems |
standard/blankscreen(3) -- controls screen blanking
|
b expects TRUE or FALSE. TRUE stops display and turns screen black. FALSE restores the display. |
standard/blanktime(3) -- sets the screen blanking timeout
|
count expects the number of graphics timer events after which to blank the current screen. The frequency of graphics timer events is returned by the getgdesc inquiry GD_TIMERHZ. |
libblas/blas(3) -- Basic Linear Algebra Subprograms
|
BLAS Level 1: .....function...... ....prefix,suffix..... rootname dot product s- d- c-u c-c z-u z-c -doty = a*x + y s- d- c- z- -axpy setup Givens rotation s- d- -rotg apply Givens rotation s- d- cs- zd- -rot copy x into y s- d- c- z- -copy swap x and y s- d- c- z- -swap Euclidean norm s- d- sc- dz- -nrm2 sum of absolute values s- d- sc- dz- -asum x = a*x s- d- cs- c- zd- z- -scal index of max abs value is- id- ic- iz- -amax BLAS Level 2: MV Matrix vector multiply R Rank one update to a matrix R... |
standard/blendcolor(3) -- specifies a constant color for blending
|
red is a floating point value between 0 and 1 (default 1.0). green is a floating point value between 0 and 1 (default 1.0). blue is a floating point value between 0 and 1 (default 1.0). alpha is a floating point value between 0 and 1 (default 1.0). |
standard/blendfunction(3) -- computes a blended color value for a pixel
|
sfactr is a symbolic constant taken from the list below. It identifies the blending factor by which to scale contribution from source pixel RGBA (red, green, blue, alpha) values. BF_ZERO 0 BF_ONE 1 BF_DC (destination RGBA)/255 BF_MDC 1 - (destination RGBA)/255 BF_SA (source alpha)/255 BF_MSA 1 - (source alpha)/255 BF_DA (destination alpha)/255 BF_MDA 1 - (destination alpha)/255 BF_MIN_SA_MDA min(BF_SA, BF_MDA) BF_CC (constant RGBA)/255 BF_MCC 1 - (constant RGBA)/255 BF_CA (constant alpha)/255 BF... |