Commit graph

4427 commits

Author SHA1 Message Date
Adrian Mariano
5580bdaf14 doc fixes for planetary gears 2024-09-12 23:08:11 -04:00
Adrian Mariano
289d6afb3e spin direction sign fix 2024-09-02 08:14:30 -04:00
Adrian Mariano
ef610906b0 Change VNF hull anchors to point in more rational directions 2024-09-01 21:21:24 -04:00
Adrian Mariano
d897c42a3c regular_prism() sizing bugfixes 2024-09-01 15:08:53 -04:00
Adrian Mariano
6d9d5a8e5a fix function return from regular_prism() 2024-09-01 07:32:46 -04:00
Adrian Mariano
51fbe696b1 fix anchor bug for non-orthogonal spins
change regular_prism side face anchors to point UP
2024-08-31 13:19:10 -04:00
Adrian Mariano
9ac540e03d fix 2d attach() bug 2024-08-30 20:17:49 -04:00
Adrian Mariano
5c3692d109 fix inside attachment spin bug 2024-08-30 19:42:41 -04:00
Adrian Mariano
b919905449 doc fix 2024-08-29 20:38:51 -04:00
Adrian Mariano
f4e37df07b newlines 2024-08-29 19:30:44 -04:00
Adrian Mariano
989007a4bc add regular_prism(), fix anchors to prismoid() 2024-08-29 19:29:43 -04:00
Adrian Mariano
fa58f33e6d fix spin on wedge edges 2024-08-23 18:11:45 -04:00
Adrian Mariano
de6d7a21d7 doc tweaks 2024-08-23 18:11:29 -04:00
Adrian Mariano
1ab0a85453 doc fixes and screws fix 2024-08-09 21:52:51 -04:00
Adrian Mariano
f96e521e9b bugfix for rot_copies: sa parameter was ignored 2024-07-27 10:04:58 -04:00
Adrian Mariano
7c737fd0a3 doc tweaks 2024-07-27 09:36:51 -04:00
Adrian Mariano
5375e41af4 example fix 2024-07-26 06:33:25 -04:00
Adrian Mariano
c2b5cd148e add 3D to examples so they display 2024-07-26 06:07:25 -04:00
Adrian Mariano
7892d488ba docfix 2024-07-25 21:56:40 -04:00
Adrian Mariano
88e11dfcaf docfix 2024-07-25 21:28:45 -04:00
Adrian Mariano
cff856362b add vnf_sheet, bezier_sheet, vnf_boundary and vnf_thin_offset 2024-07-25 21:04:07 -04:00
Adrian Mariano
0519b5f94c doc tweaks 2024-07-20 11:23:07 -04:00
Adrian Mariano
f8ae1d96f4 doc fixes & new examples for bevel gears 2024-07-18 19:13:21 -04:00
Adrian Mariano
b0d82973f0 bugfix 2024-07-18 17:12:45 -04:00
Adrian Mariano
ff3dbf5343 improve message 2024-07-18 00:22:26 -04:00
Adrian Mariano
62c262d3fa fix tolerance bug for screw holes 2024-07-17 23:37:40 -04:00
Adrian Mariano
054052144e sum/product optimizations 2024-06-25 19:24:48 -04:00
Adrian Mariano
c6e58b926b doc fix 2024-06-22 22:58:52 -04:00
Adrian Mariano
565b62f3f5 fix projection examples 2024-06-22 22:32:05 -04:00
Adrian Mariano
e0c6280b09 cylindrical_extrude bugfix 2024-06-21 17:51:18 -04:00
Adrian Mariano
683bab1d6a fix typo 2024-06-20 17:29:14 -04:00
Adrian Mariano
67697fe139 add projection() 2024-06-20 17:20:10 -04:00
Adrian Mariano
76a5d59e97 spiral_sweep bugfix 2024-06-12 22:01:34 -04:00
Adrian Mariano
aafe13f0da example fix 2024-06-08 00:20:33 -04:00
Revar Desmera
fa7ca74dd6
Merge pull request #1439 from hvegh/master
rect: enhanced rounding and chamfer options
2024-06-07 18:50:54 -07:00
Henk Vergonet
b63554e624 rect: enhanced rounding chamfer options, fixes
- Renamed cswap to corner_flip
- corner_flip is boolean vector, and is automatically expanded from a
  scalar.
- when atype = "perim", the anchors are now updated accordingly.

corner_flip = Flips the direction of the rouding curve or roudover and chamfer spikes.
 If true it produces spikes on the Y axis. If false it produces spikes on the X axis.
 If given as a list of four booleans it flips the direction for each corner, in the order [X+Y+,X-Y+,X-Y-,X+Y-].  Default: false (no flip)

Signed-off-by: Henk Vergonet <henk.vergonet@gmail.com>
2024-06-05 18:08:27 +02:00
Henk Vergonet
5221b80c4a rect: whitespace fixes 2024-06-03 13:50:01 +02:00
Henk Vergonet
7cc1430557 rebase with latest head 2024-06-03 13:35:20 +02:00
Henk Vergonet
996adeadb0 rect: enhanced rounding chamfer options
Introduces the extra "cswap" parameter that moves the chamfer
and rounding center points.

In the original code the negative roudings and chamfers are
only extended in the x direction, this allows control over
both directions.

Example:

$fn = 32;
translate([0,0,-.51])
distribute(spacing=1.5) {

// rounded examples:

    // original
    rect(rounding=.25*[1,1,-1,-1]);

    // cswap curve for quadrants [-1,1] and [-1,-1]
    rect(rounding=.25*[1,1,-1,-1], cswap = [0,1,1,0]);

// chamfered examples:

    // original
    rect(chamfer=.25*[1,1,-1,-1]);

    // cswap chamfer for quadrants [-1,1] and [-1,-1]
    // note only affects the negative chamfers
    rect(chamfer=.25*[1,1,-1,-1], cswap = [0,1,1,0]);
}

Signed-off-by: Henk Vergonet <henk.vergonet@gmail.com>
2024-06-03 13:14:22 +02:00
Revar Desmera
fec1fa07e3
Merge pull request #1438 from BelfrySCAD/revarbat_dev
Documented tex_taper= for rotate_sweep()
2024-06-01 02:18:36 -07:00
Revar Desmera
ecc095d4c0 Documented tex_taper= for rotate_sweep() 2024-06-01 01:36:18 -07:00
Revar Desmera
44dc7945c7
Merge pull request #1437 from adrianVmariano/master
attach() bugfix
2024-05-31 20:40:55 -07:00
Adrian Mariano
c8d61f4d79 bezier doc tweaks 2024-05-29 20:29:32 -04:00
Adrian Mariano
4284b86ba9 doc tweak 2024-05-28 19:55:21 -04:00
Adrian Mariano
0f39f10dba fix attach() bug 2024-05-28 19:12:27 -04:00
Revar Desmera
334498d8f9
Merge pull request #1435 from adrianVmariano/master
arc endpoint bugfix
2024-05-23 14:07:52 -07:00
Adrian Mariano
04437cc6a0 bugfix 2024-05-22 21:51:01 -04:00
Adrian Mariano
f3b35eab0a arc bugfix 2024-05-22 21:30:36 -04:00
Adrian Mariano
bf9c1da410 arc endpoint bugfix 2024-05-22 20:26:52 -04:00
Revar Desmera
f9e6e67acf
Merge pull request #1433 from adrianVmariano/master
vnf_validate isect bugfix
2024-05-21 23:34:59 -07:00