Convert an object to a nat hxsurf object
as.hxsurf(x, ...)
# S3 method for mesh3d
as.hxsurf(x, region = "Interior", col = NULL, ...)
A surface object
Additional arguments passed to methods
The default name for the surface region
The surface colour (default value of NULL implies the colour
specified in mesh3d object or grey
when the mesh3d
object has
no colour.)
A new surface object of class hxsurf
(see
read.hxsurf
) for details.
hxsurf
objects are based on the format of Amira's surface
objects (see read.hxsurf
). They have the ability to include
multiple distinct regions. However, at the moment the only method that we
provide converts mesh3d
objects, which can only include one region.
Other hxsurf:
as.mesh3d()
,
materials()
,
plot3d.hxsurf()
,
read.hxsurf()
,
subset.hxsurf()
,
write.hxsurf()
tet=tetrahedron3d(col='red')
teth=as.hxsurf(tet)
# \donttest{
plot3d(teth)
# }