mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Fixes and docs tweaks for bottlecaps.scad
This commit is contained in:
parent
1b8f28cf35
commit
a0c21ffafb
4 changed files with 48 additions and 19 deletions
|
@ -16,11 +16,12 @@ include <knurling.scad>
|
||||||
|
|
||||||
// Module: pco1810_neck()
|
// Module: pco1810_neck()
|
||||||
// Usage:
|
// Usage:
|
||||||
// pco1810_neck()
|
// pco1810_neck(<wall>)
|
||||||
// Description:
|
// Description:
|
||||||
// Creates an approximation of a standard PCO-1810 threaded beverage bottle neck.
|
// Creates an approximation of a standard PCO-1810 threaded beverage bottle neck.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// wall = Wall thickness in mm.
|
// wall = Wall thickness in mm.
|
||||||
|
// ---
|
||||||
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
||||||
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
||||||
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
||||||
|
@ -29,6 +30,12 @@ include <knurling.scad>
|
||||||
// "support-ring" = Centered at the bottom of the support ring.
|
// "support-ring" = Centered at the bottom of the support ring.
|
||||||
// Example:
|
// Example:
|
||||||
// pco1810_neck();
|
// pco1810_neck();
|
||||||
|
// Example: Standard Anchors
|
||||||
|
// pco1810_neck() show_anchors(custom=false);
|
||||||
|
// Example: Custom Named Anchors
|
||||||
|
// expose_anchors(0.3)
|
||||||
|
// pco1810_neck()
|
||||||
|
// show_anchors(std=false);
|
||||||
module pco1810_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
module pco1810_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
{
|
{
|
||||||
inner_d = 21.74;
|
inner_d = 21.74;
|
||||||
|
@ -62,7 +69,7 @@ module pco1810_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
anchorpt("support-ring", [0,0,neck_h-h/2]),
|
anchorpt("support-ring", [0,0,neck_h-h/2]),
|
||||||
anchorpt("tamper-ring", [0,0,h/2-tamper_base_h])
|
anchorpt("tamper-ring", [0,0,h/2-tamper_base_h])
|
||||||
];
|
];
|
||||||
attachable(anchor,spin,orient, d=support_d, l=h, anchors=anchors) {
|
attachable(anchor,spin,orient, d1=neck_d, d2=lip_recess_d+2*lip_leadin_r, l=h, anchors=anchors) {
|
||||||
down(h/2) {
|
down(h/2) {
|
||||||
rotate_extrude(convexity=10) {
|
rotate_extrude(convexity=10) {
|
||||||
polygon(turtle(
|
polygon(turtle(
|
||||||
|
@ -127,12 +134,13 @@ module pco1810_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
|
|
||||||
// Module: pco1810_cap()
|
// Module: pco1810_cap()
|
||||||
// Usage:
|
// Usage:
|
||||||
// pco1810_cap(wall, [texture]);
|
// pco1810_cap(<wall>, <texture>);
|
||||||
// Description:
|
// Description:
|
||||||
// Creates a basic cap for a PCO1810 threaded beverage bottle.
|
// Creates a basic cap for a PCO1810 threaded beverage bottle.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// wall = Wall thickness in mm.
|
// wall = Wall thickness in mm.
|
||||||
// texture = The surface texture of the cap. Valid values are "none", "knurled", or "ribbed". Default: "none"
|
// texture = The surface texture of the cap. Valid values are "none", "knurled", or "ribbed". Default: "none"
|
||||||
|
// ---
|
||||||
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
||||||
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
||||||
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
||||||
|
@ -142,6 +150,12 @@ module pco1810_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
// pco1810_cap();
|
// pco1810_cap();
|
||||||
// pco1810_cap(texture="knurled");
|
// pco1810_cap(texture="knurled");
|
||||||
// pco1810_cap(texture="ribbed");
|
// pco1810_cap(texture="ribbed");
|
||||||
|
// Examples: Standard Anchors
|
||||||
|
// pco1810_cap(texture="ribbed") show_anchors(custom=false);
|
||||||
|
// Examples: Custom Named Anchors
|
||||||
|
// expose_anchors(0.3)
|
||||||
|
// pco1810_cap(texture="ribbed")
|
||||||
|
// show_anchors(std=false);
|
||||||
module pco1810_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
module pco1810_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
||||||
{
|
{
|
||||||
cap_id = 28.58;
|
cap_id = 28.58;
|
||||||
|
@ -187,11 +201,12 @@ module pco1810_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
||||||
|
|
||||||
// Module: pco1881_neck()
|
// Module: pco1881_neck()
|
||||||
// Usage:
|
// Usage:
|
||||||
// pco1881_neck()
|
// pco1881_neck(<wall>)
|
||||||
// Description:
|
// Description:
|
||||||
// Creates an approximation of a standard PCO-1881 threaded beverage bottle neck.
|
// Creates an approximation of a standard PCO-1881 threaded beverage bottle neck.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// wall = Wall thickness in mm.
|
// wall = Wall thickness in mm.
|
||||||
|
// ---
|
||||||
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER`
|
||||||
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#spin). Default: `0`
|
||||||
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#orient). Default: `UP`
|
||||||
|
@ -200,6 +215,12 @@ module pco1810_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
||||||
// "support-ring" = Centered at the bottom of the support ring.
|
// "support-ring" = Centered at the bottom of the support ring.
|
||||||
// Example:
|
// Example:
|
||||||
// pco1881_neck();
|
// pco1881_neck();
|
||||||
|
// Example:
|
||||||
|
// pco1881_neck() show_anchors(custom=false);
|
||||||
|
// Example:
|
||||||
|
// expose_anchors(0.3)
|
||||||
|
// pco1881_neck()
|
||||||
|
// show_anchors(std=false);
|
||||||
module pco1881_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
module pco1881_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
{
|
{
|
||||||
inner_d = 21.74;
|
inner_d = 21.74;
|
||||||
|
@ -234,7 +255,7 @@ module pco1881_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
anchorpt("support-ring", [0,0,neck_h-h/2]),
|
anchorpt("support-ring", [0,0,neck_h-h/2]),
|
||||||
anchorpt("tamper-ring", [0,0,h/2-tamper_base_h])
|
anchorpt("tamper-ring", [0,0,h/2-tamper_base_h])
|
||||||
];
|
];
|
||||||
attachable(anchor,spin,orient, d=support_d, l=h, anchors=anchors) {
|
attachable(anchor,spin,orient, d1=neck_d, d2=lip_recess_d+2*lip_leadin_r, l=h, anchors=anchors) {
|
||||||
down(h/2) {
|
down(h/2) {
|
||||||
rotate_extrude(convexity=10) {
|
rotate_extrude(convexity=10) {
|
||||||
polygon(turtle(
|
polygon(turtle(
|
||||||
|
@ -313,6 +334,12 @@ module pco1881_neck(wall=2, anchor="support-ring", spin=0, orient=UP)
|
||||||
// pco1881_cap();
|
// pco1881_cap();
|
||||||
// pco1881_cap(texture="knurled");
|
// pco1881_cap(texture="knurled");
|
||||||
// pco1881_cap(texture="ribbed");
|
// pco1881_cap(texture="ribbed");
|
||||||
|
// Example: Standard Anchors
|
||||||
|
// pco1881_cap(texture="ribbed") show_anchors(custom=false);
|
||||||
|
// Example: Custom Named Anchors
|
||||||
|
// expose_anchors(0.5)
|
||||||
|
// pco1881_cap(texture="ribbed")
|
||||||
|
// show_anchors(std=false);
|
||||||
module pco1881_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
module pco1881_cap(wall=2, texture="none", anchor=BOTTOM, spin=0, orient=UP)
|
||||||
{
|
{
|
||||||
$fn = segs(33/2);
|
$fn = segs(33/2);
|
||||||
|
|
20
debug.scad
20
debug.scad
|
@ -334,25 +334,27 @@ module anchor_arrow2d(s=15, color=[0.333,0.333,1], $tags="anchor-arrow") {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Module: show_internal_anchors()
|
// Module: expose_anchors()
|
||||||
// Usage:
|
// Usage:
|
||||||
// show_internal_anchors(<opacity>) {...}
|
// expose_anchors(opacity) {...}
|
||||||
// Description:
|
// Description:
|
||||||
// Makes the children transparent gray, while showing any
|
// Makes the children transparent gray, while showing any anchor arrows that may exist.
|
||||||
// anchor arrows that may exist.
|
|
||||||
// Arguments:
|
// Arguments:
|
||||||
// opacity = The opacity of the arrow. 0.0 is invisible, 1.0 is opaque. Default: 0.2
|
// opacity = The opacity of the arrow. 0.0 is invisible, 1.0 is opaque. Default: 0.2
|
||||||
// Example(FlatSpin):
|
// Example(FlatSpin):
|
||||||
// show_internal_anchors() cube(50, center=true) show_anchors();
|
// expose_anchors() cube(50, center=true) show_anchors();
|
||||||
module show_internal_anchors(opacity=0.2) {
|
module expose_anchors(opacity=0.2) {
|
||||||
show("anchor-arrow") children() show_anchors();
|
show("anchor-arrow")
|
||||||
hide("anchor-arrow") recolor(list_pad(point3d($color),4,fill=opacity)) children();
|
children();
|
||||||
|
hide("anchor-arrow")
|
||||||
|
color(is_string($color)? $color : point3d($color), opacity)
|
||||||
|
children();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Module: show_anchors()
|
// Module: show_anchors()
|
||||||
// Usage:
|
// Usage:
|
||||||
// show_anchors(<s>, <std=>, <custom=>);
|
// ... show_anchors(<s>, <std=>, <custom=>);
|
||||||
// Description:
|
// Description:
|
||||||
// Show all standard anchors for the parent object.
|
// Show all standard anchors for the parent object.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
|
|
|
@ -379,8 +379,8 @@ function get_metric_nut_thickness(size) = lookup(size, [
|
||||||
// Example(FlatSpin): Standard Anchors
|
// Example(FlatSpin): Standard Anchors
|
||||||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||||
// show_anchors(5, custom=false);
|
// show_anchors(5, custom=false);
|
||||||
// Example(FlatSpin): Standard Anchors
|
// Example(FlatSpin): Custom Named Anchors
|
||||||
// show_internal_anchors()
|
// expose_anchors()
|
||||||
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
// screw(screwsize=3,screwlen=10,headsize=6,headlen=3)
|
||||||
// show_anchors(5, std=false);
|
// show_anchors(5, std=false);
|
||||||
module screw(
|
module screw(
|
||||||
|
@ -470,8 +470,8 @@ module screw(
|
||||||
// Example(FlatSpin): Standard Anchors
|
// Example(FlatSpin): Standard Anchors
|
||||||
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||||
// show_anchors(5, custom=false);
|
// show_anchors(5, custom=false);
|
||||||
// Example(FlatSpin): Custom Anchors
|
// Example(FlatSpin): Custom Named Anchors
|
||||||
// show_internal_anchors(0.125)
|
// expose_anchors(0.125)
|
||||||
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
// metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2")
|
||||||
// show_anchors(5, std=false);
|
// show_anchors(5, std=false);
|
||||||
module metric_bolt(
|
module metric_bolt(
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,542];
|
BOSL_VERSION = [2,0,543];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
|
Loading…
Reference in a new issue