mirror of
https://github.com/Irev-Dev/Round-Anything.git
synced 2025-08-11 02:14:05 +02:00
Merge pull request #10 from nickcoutsos/master
Invert flipped faces for polyRoundExtrude
This commit is contained in:
@@ -29,6 +29,11 @@ let(
|
|||||||
points[listWrap(i+1,lp)],
|
points[listWrap(i+1,lp)],
|
||||||
],thick=offset,mode=isCWorCCW)];
|
],thick=offset,mode=isCWorCCW)];
|
||||||
|
|
||||||
|
function reverseList(list) = [ for(i=[len(list) - 1:-1:0]) list[i] ];
|
||||||
|
|
||||||
|
// Apply `reverseList` to the array of vertex indices for an array of faces
|
||||||
|
function invertFaces(faces) = [ for(f=faces) reverseList(f) ];
|
||||||
|
|
||||||
function makeCurvedPartOfPolyHedron(radiiPoints,r,fn,minR=0.01)=
|
function makeCurvedPartOfPolyHedron(radiiPoints,r,fn,minR=0.01)=
|
||||||
// this is a private function that I'm not expecting library users to use directly
|
// this is a private function that I'm not expecting library users to use directly
|
||||||
// radiiPoints= serise of x, y, r points
|
// radiiPoints= serise of x, y, r points
|
||||||
@@ -152,7 +157,7 @@ let(
|
|||||||
topCapFace=[for(i=[0:singeLayerLength-1])radiusPointsLength-singeLayerLength+i],
|
topCapFace=[for(i=[0:singeLayerLength-1])radiusPointsLength-singeLayerLength+i],
|
||||||
bottomCapFace=[for(i=[0:singeLayerLength-1])radiusPointsLength*2-singeLayerLength+i],
|
bottomCapFace=[for(i=[0:singeLayerLength-1])radiusPointsLength*2-singeLayerLength+i],
|
||||||
finalPolyhedronPoints=concat(topRadiusPoints,bottomRadiusPoints),
|
finalPolyhedronPoints=concat(topRadiusPoints,bottomRadiusPoints),
|
||||||
finalPolyhedronFaces=concat(topRadiusFaces,bottomRadiusFaces, sideFaces, [topCapFace], [bottomCapFace])
|
finalPolyhedronFaces=concat(topRadiusFaces,invertFaces(bottomRadiusFaces),invertFaces(sideFaces),[topCapFace],invertFaces([bottomCapFace]))
|
||||||
)
|
)
|
||||||
[
|
[
|
||||||
finalPolyhedronPoints,
|
finalPolyhedronPoints,
|
||||||
@@ -160,7 +165,11 @@ let(
|
|||||||
];
|
];
|
||||||
|
|
||||||
module polyRoundExtrude(radiiPoints,length=5,r1=1,r2=1,fn=10,convexity=10) {
|
module polyRoundExtrude(radiiPoints,length=5,r1=1,r2=1,fn=10,convexity=10) {
|
||||||
polyhedronPointsNFaces=extrudePolygonWithRadius(radiiPoints,length,r1,r2,fn);
|
orderedRadiiPoints = CWorCCW(radiiPoints) == 1
|
||||||
|
? reverseList(radiiPoints)
|
||||||
|
: radiiPoints;
|
||||||
|
|
||||||
|
polyhedronPointsNFaces=extrudePolygonWithRadius(orderedRadiiPoints,length,r1,r2,fn);
|
||||||
polyhedron(points=polyhedronPointsNFaces[0], faces=polyhedronPointsNFaces[1], convexity=convexity);
|
polyhedron(points=polyhedronPointsNFaces[0], faces=polyhedronPointsNFaces[1], convexity=convexity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user