findNeighbourFacets | R Documentation |
This function finds the IDs of each mesh facet It requires number of cores of your pc to use and list of facets indexes corresponding to the "it" property of mesh3d object.
findNeighbourFacets(no_cores, indici_tri)
no_cores |
number of core to use in search computation |
indici_tri |
list of facets indexes ("it property of mesh3d object") |
a matrix of indexes of facets neighbours of target face saved on working dir
## Not run: indici_tri<-t(mesh3d[['it']]) require("parallel") detectCores() no_cores <- detectCores() - 4 ### keep free some cores neighbours<-findNeighbourFacets(no_cores,indici_tri) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.