Learn R Programming

Rvcg (version 0.24)

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
)

Value

returns subdivided mesh

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.

Examples

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

Run the code above in your browser using DataLab