## S3 method for class 'mvmesh':
print( x, ... )
## S3 method for class 'mvmesh':
plot( x, new.plot=TRUE, show.points=FALSE, show.edges=TRUE, show.faces=FALSE,
show.labels = FALSE, label.values=NULL, ... )
DrawSimplex2d(S,label,show.labels,mvmesh.type,show.edges=TRUE,show.faces=FALSE,...)
DrawSimplex3d(S,label,show.labels,mvmesh.type,show.edges=TRUE,show.faces=FALSE,...)UnitSimplex, SolidSimplex,
UnitSphere, UnitBall, RectangularMesh, etc.mvmesh.print will print out summary information about a mesh object
plot will plot a mesh, calling DrawSimplex2d or DrawSimplex3d
to plot a each simplex as appropriate for the dimension. These routines are meant to
give a basic display; not all rgl capabilities are used.print( SolidSimplex( n=3, k=2 ) )
plot( SolidSimplex( n=3, k=2 ), col='red' )Run the code above in your browser using DataLab