Learn R Programming

Rvcg (version 0.18)

vcgSubdivide: subdivide the triangles of a mesh

Description

subdivide the triangles of a mesh

Usage

vcgSubdivide(x, threshold = NULL, type = c("Butterfly", "Loop"),
  looptype = c("loop", "regularity", "continuity"), iterations = 3,
  silent = FALSE)

Arguments

x

triangular mesh of class "mesh3d"

threshold

minimum edge length to subdivide

type

character: algorithm used. Options are Butterfly and Loop (see notes)

looptype

character: method for type = loop options are "loop","regularity","continuity" (see notes)

iterations

integer: number of iterations

silent

logical: suppress output.

Value

returns subdivided mesh

Examples

Run this code
# NOT RUN {
data(humface)
subdivide <- vcgSubdivide(humface,type="Loop",looptype="regularity")

# }

Run the code above in your browser using DataLab