The array of nodes to convert.
The prodct used (i.e. "prism", "tegum" or "pyramid").
An element such that, when it appears in the product, is considered differently.
Specifies what specialFactor becomes into within the product.
The resulting name.
Generated using TypeDoc, the 1/31/2021 at 6:18:55 AM
Converts a set of ConstructionNodes into their prism product/tegum product/pyramid product's name.
Example
const triangle = new Polygon([3, 1]); const pentagram = new Polygon([5, 2]); //Triangular-pentagrammic duoprism. console.log(ConstructionNode.multiFamily( [triangle, pentagram], "family/multiprism", "shape/dyad", "shape/prism" ));