本文整理汇总了TypeScript中math/polyhedra.Face.adjacentFaces方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Face.adjacentFaces方法的具体用法?TypeScript Face.adjacentFaces怎么用?TypeScript Face.adjacentFaces使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类math/polyhedra.Face
的用法示例。
在下文中一共展示了Face.adjacentFaces方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: isAligned
// Return true if the base and augmentee are aligned
function isAligned(
polyhedron: Polyhedron,
base: Face,
underside: Face,
gyrate: string | undefined,
augmentType: string,
) {
if (augmentType === 'pyramid') return true;
const baseType = getBaseType(base);
if (baseType === 'pyramid' || baseType === 'antiprism') {
return true;
}
if (baseType === 'prism' && Cap.getAll(polyhedron).length === 0) {
return true;
}
if (baseType !== 'truncated' && _.isNil(gyrate)) {
throw new Error(`Must define 'gyrate' for augmenting ${baseType} `);
}
const adjFace =
baseType === 'prism' ? getOppositePrismFace(base) : base.adjacentFaces()[0];
const alignedFace = getCyclic(underside.adjacentFaces(), -1);
if (baseType === 'rhombicosidodecahedron') {
const isOrtho = (adjFace.numSides !== 4) === (alignedFace.numSides !== 4);
return isOrtho === (gyrate === 'ortho');
}
// It's orthogonal if triangle faces are aligned or non-triangle faces are aligned
const isOrtho = (adjFace.numSides !== 3) === (alignedFace.numSides !== 3);
if (baseType === 'truncated') {
return !isOrtho;
}
// "ortho" or "gyro" is actually determined by whether the *tops* are aligned, not the bottoms
// So for a cupola-rotunda, it's actually the opposite of everything else
if (isCupolaRotunda(Cap.getAll(polyhedron)[0].type, augmentType)) {
return isOrtho !== (gyrate === 'ortho');
}
return isOrtho === (gyrate === 'ortho');
}
示例2: isExpandedFace
export function isExpandedFace(
polyhedron: Polyhedron,
face: Face,
nSides?: number,
) {
const type = expansionType(polyhedron);
if (typeof nSides === 'number' && face.numSides !== nSides) return false;
if (!face.isValid()) return false;
return _.every(face.adjacentFaces(), { numSides: edgeShape[type] });
}
示例3: getBaseType
function getBaseType(base: Face) {
const adjacentFaces = base.adjacentFaces();
const adjacentFaceCounts = _(adjacentFaces)
.map('numSides')
.uniq()
.value();
if (setEquals(adjacentFaceCounts, [3, 4])) {
return 'cupola';
} else if (setEquals(adjacentFaceCounts, [4])) {
return 'prism';
} else if (setEquals(adjacentFaceCounts, [3])) {
return _.intersection(adjacentFaces).length > 0 ? 'pyramid' : 'antiprism';
} else if (setEquals(adjacentFaceCounts, [3, 5])) {
return 'rotunda';
} else if (setEquals(adjacentFaceCounts, [4, 5])) {
return 'rhombicosidodecahedron';
} else {
return 'truncated';
}
}