本文整理汇总了TypeScript中math/geom.withOrigin函数的典型用法代码示例。如果您正苦于以下问题:TypeScript withOrigin函数的具体用法?TypeScript withOrigin怎么用?TypeScript withOrigin使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了withOrigin函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: return
return (vector, vertex) => {
const smallFace = find(vertex.adjacentFaces(), {
numSides: 6,
});
const normal = smallFace.withPolyhedron(polyhedron).normal();
const transform = withOrigin(smallFace.centroid(), v =>
v
.scale(faceResizeScale)
.add(normal.scale(normalizedResizeAmount * newSideLength)),
);
return transform(vector);
};
示例2: withOrigin
p =>
withOrigin(p.normalRay(), v => v.getRotatedAroundAxis(p.normal(), theta)),
示例3: withOrigin
return getTransformedVertices<VEList>(vertexSets, set =>
withOrigin(set.normalRay(), v =>
v
.add(set.normal().scale(scale * multiplier))
.getRotatedAroundAxis(set.normal(), angle * multiplier),
),
示例4: getTransformedVertices
const endVertices = getTransformedVertices(faces, f =>
withOrigin(polyhedron.centroid(), v => v.scale(scale))(f.centroid()),
示例5: getTransformedVertices
return getTransformedVertices(faces, f =>
withOrigin(f.centroid(), v =>
v.getRotatedAroundAxis(f.normal(), angle).add(f.normal().scale(scale)),
),