| vcgIsotropicRemeshing {Rvcg} | R Documentation | 
Isotropically remesh a triangular surface mesh
Description
Isotropically remesh a triangular surface mesh
Usage
vcgIsotropicRemeshing(
  x,
  TargetLen = 1,
  FeatureAngleDeg = 10,
  MaxSurfDist = 1,
  iterations = 3,
  Adaptive = FALSE,
  split = TRUE,
  collapse = TRUE,
  swap = TRUE,
  smooth = TRUE,
  project = TRUE,
  surfDistCheck = TRUE
)
Arguments
| x | mesh of class  | 
| TargetLen | numeric: edge length of the target surface | 
| FeatureAngleDeg | define Crease angle (in degree). | 
| MaxSurfDist | Max. surface distance | 
| iterations | ToDo | 
| Adaptive | enable adaptive remeshing | 
| split | enable refine step | 
| collapse | enable collapse step | 
| swap | enable dge swap | 
| smooth | enable smoothing | 
| project | enable reprojection step | 
| surfDistCheck | check distance to surface | 
Value
returns the remeshed surface mesh
Examples
## Not run: 
data(humface)
resampledMesh <- vcgIsotropicRemeshing(humface,TargetLen=2.5)
## End(Not run)
[Package Rvcg version 0.23 Index]