A = surfaceArea(shp,RegionID)
returns the surface area of a region of the alpha shape. RegionID
is the ID for the region and 1 ≤ RegionID ≤
numRegions(shp).
3-D alpha shape, specified as an alphaShape object. For
more information, see alphaShape
Example: shp = alphaShape(x,y,z) creates a 3-D
alphaShape object from the (x,y,z)
point coordinates.
RegionID — ID number for a region in the alpha shape positive integer scalar
ID number for region in alpha shape, specified as a positive
integer scalar between 1 and numRegions(shp).
An alpha shape can contain several smaller regions, depending
on the point set and parameters. Each of these smaller regions is
assigned a unique RegionID, which numbers the regions
from the largest area or volume to the smallest. For example, consider
a 3-D alpha shape with two regions. The region with the largest volume
has a RegionID of 1, and the smaller region has
a RegionID of 2.
Example: shp.RegionThreshold = area(shp,numRegions(shp)-2); suppresses
the two smallest regions in 2-D alpha shape shp.