rgl (version 1.3.1)

rgl.attrib: Get information about shapes

Description

Retrieves information about the shapes in a scene.

Usage

rgl.attrib(id, attrib, first = 1, 
	last = rgl.attrib.count(id, attrib))

Value

rgl.attrib

returns the values of the attribute. Attributes are mostly real-valued, with the following sizes:

"vertices"3 valuesx, y, z
"normals"3 valuesx, y, z
"centers"3 valuesx, y, z
"colors"4 valuesr, g, b, a
"texcoords"2 valuess, t
"dim"2 valuesr, c
"cex"1 valuecex
"adj"2 valuesx, y
"radii"1 valuer
"ids"1 valueid
"usermatrix"4 valuesx, y, z, w
"texts"1 valuetext
"types"1 valuetype
"flags"1 valueflag
"family"1 valuefamily
"font"1 valuefont
"pos"1 valuepos

The "texts", "types" and "family"

attributes are character-valued; the "flags"

attribute is logical valued, with named rows.

These are returned as matrices with the row count equal to the count for the attribute, and the columns as listed above.

Arguments

id

A shape identifier, as returned by ids3d.

attrib

An attribute of a shape. Currently supported: one of
"vertices", "normals", "colors", "texcoords", "dim", "texts", "cex", "adj", "radii", "centers", "ids", "usermatrix", "types", "flags", "offsets", "family", "font", "pos"
or unique prefixes to one of those.

first, last

Specify these to retrieve only those rows of the result.

Author

Duncan Murdoch

Details

If the identifier is not found or is not a shape that has the given attribute, zero will be returned by rgl.attrib.count, and an empty matrix will be returned by rgl.attrib.

The first four attrib names correspond to the usual OpenGL properties; "dim" is used just for surfaces, defining the rows and columns in the rectangular grid; "cex", "adj", "family", "font" and "pos" apply only to text objects.

See Also

ids3d, rgl.attrib.info

Examples

Run this code
p <- plot3d(rnorm(100), rnorm(100), rnorm(100), type = "s", col = "red")
rgl.attrib(p["data"], "vertices", last = 10)

Run the code above in your browser using DataLab