Skip to content

Commit

Permalink
Merge pull request #1446 from adrianVmariano/master
Browse files Browse the repository at this point in the history
projection doc fix
  • Loading branch information
revarbat authored Jun 23, 2024
2 parents 67f0004 + c6e58b9 commit 17e307f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion miscellaneous.scad
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ module path_extrude(path, convexity=10, clipsize=100) {
// ---
// od = The outer diameter to extrude to.
// id = The inner diameter to extrude from.
// size = If a scalar, the width of the 2D children. If a vector, the [X,Y] size of the 2D children. Default: [2*PI*or,1000]
// size = If a scalar, the width of the 2D children. If a vector, the [X,Y] size of the 2D children. Default: [`2*PI*or`,1000]
// convexity = The max number of times a line could pass though a wall. Default: 10
// spin = Amount in degrees to spin around cylindrical axis. Default: 0
// orient = The orientation of the cylinder to wrap around, given as a vector. Default: UP
Expand Down
4 changes: 2 additions & 2 deletions vnf.scad
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ function _vnf_centroid(vnf,eps=EPSILON) =
// XY plane, which is again a region. If the VNF does not intersect
// the XY plane then returns the empty set. This operation is
// much faster than `cut=false`.
// Example: Here's a VNF with two linked toruses and a small cube
// Example(3D): Here's a VNF with two linked toruses and a small cube
// vnf = vnf_join([
// xrot(90,torus(id=15,od=24,$fn=5)),
// right(12,torus(id=15,od=24,$fn=4)),
Expand All @@ -1220,7 +1220,7 @@ function _vnf_centroid(vnf,eps=EPSILON) =
// ]);
// reg = projection(vnf);
// region(reg);
// Example: Tilted torus
// Example(3D): Tilted torus
// vnf = xrot(35,torus(id=4,od=12,$fn=32));
// vnf_polyhedron(vnf);
// Example(2D): Projection of tilted torus using `cut=true`
Expand Down

0 comments on commit 17e307f

Please sign in to comment.