1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
\name{gltfTypes}
\alias{gltfTypes}
\docType{data}
\title{
Names of glTF types.
}
\description{
The glTF specification packs data into buffers, labelling
the type of each part with an integer. The first six values
in \code{gltfTypes} are the
integers used there, with \code{"int"} and \code{"double"}
added for completeness; those values are taken from
OpenGL header files.
}
\usage{gltfTypes}
\format{
\code{gltfTypes} is simply a named vector containing integer values.
}
\details{
These are used in the \code{\link{Buffer}} object.
}
\references{
\url{https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#_accessor_componenttype}
}
\examples{
gltfTypes
}
|