my.sphereConformal: Conformal change from sphere

Description Usage Arguments Examples

Description

conformal change from sphere

Usage

1
my.sphereConformal(n.psi, rho.fx)

Arguments

n.psi

is fineness index of triangle mesh of sphere

rho.fx

is a function giving rho value for coordinates on sphere

Examples

1
2
3
4
5
6
7
n.psi <- 30 # 球面メッシュの緯度刻み数
rho.fx <- function(X){
  ret <- sin(X[,3]*pi*2 )*3
  return(ret)
}
out1 <- my.sphereConformal(n.psi,rho.fx)
plot.sp.conformal(out1$xyz.ori,out1$faces.v,out1$sp.mesh$n.triangles,out1$rho.f)

ryamada22/spinSpherization documentation built on May 28, 2019, 10:44 a.m.