DoPointList(3D) — Kubota Pacfic Computer Inc. (Doré)
NAME
DoPointList − Create a point list primitive object
SYNOPSIS
C:
DtObject DoPointList(colormodel, vertextype, pointcount,
vertices)
DtColorModel colormodel;
DtVertexType vertextype;
DtInt pointcount;
DtReal vertices[];
FORTRAN:
INTEGER∗4 DOPNTL(COLMOD, VTXTYP, PNTCNT,
VTXS)
INTEGER∗4 COLMOD
INTEGER∗4 VTXTYP
INTEGER∗4 PNTCNT
REAL∗8 VTXS(∗)
DESCRIPTION
DoPointList creates a primitive object that defines a list of independent points. The parameter colormodel specifies the color model to be used when defining vertex colors (if any). The parameter vertextype specifies the exact nature of the vertex: whether the vertex contains color, normal, or uv/uvw information for shading and texture mapping. FORTRANr more information, refer to Chapter 6, Doré Vertex Types, in the Doré Reference Manual or to the VertexTypes on-line manual page.) The parameter pointcount contains the number of points in the list. The parameter vertices is an array containing data for pointcount vertices.
If vertex normals are not provided, backface culling has no effect for points because they have no surface on which to define a geometric normal.
SEE ALSO
DoLineList(3D), VertexTypes(3D)
September 02, 1992