[ Previous | Next | Contents | Glossary | Home | Search ]
GL3.2 for AIX: Graphics Library (GL) Technical Reference

isobj Subroutine

Purpose

Indicates whether a given object number actually identifies an object.

Libraries

Graphics Library

C (libgl.a)

FORTRAN (libfgl.a)

C Syntax

Int32 isobj(Int32 object)

FORTRAN Syntax

LOGICAL FUNCTION ISOBJ(object)
INTEGER*4 object

Description

The isobj subroutine indicates whether a given object number actually identifies an object. The returned value is either True, if the object number is already in use, or False, if it is not.

Note: This editing subroutine itself cannot be added to a display list.

Parameter

object Specifies the object identifier to test.

Return Values

True Object number is already in use.
False Object number is not in use.

Implementation Specifics

This subroutine is part of GL in the AIXwindows Environment/6000 Version 1, Release 2 with AIXwindows/3D Feature.

Files

/usr/include/gl/gl.h Contains C language constant and variable type definitions for GL.
/usr/include/gl/fgl.h Contains FORTRAN constant and variable type definitions for GL.

Related Information

Returning a unique integer for use as an object identifier with the genobj subroutine.

Establishing the uniqueness of a tag number with the istag subroutine.

Creating an object with the makeobj subroutine.

AIX Graphics Library Overview and Creating Objects (Display Lists).


[ Previous | Next | Contents | Glossary | Home | Search ]