mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-28 15:59:45 +00:00
af59a6c4a6
path sweep end anchors
4333 lines
192 KiB
OpenSCAD
4333 lines
192 KiB
OpenSCAD
//////////////////////////////////////////////////////////////////////
|
|
// LibFile: attachments.scad
|
|
// The modules in this file allows you to attach one object to another by making one object the child of another object.
|
|
// You can place the child object in relation to its parent object and control the position and orientation
|
|
// relative to the parent. The modifiers allow you to treat children in ways different from simple union, such
|
|
// as differencing them from the parent, or changing their color. Attachment only works when the parent and child
|
|
// are both written to support attachment. Also included in this file are the tools to make your own "attachable" objects.
|
|
// Includes:
|
|
// include <BOSL2/std.scad>
|
|
// FileGroup: Basic Modeling
|
|
// FileSummary: Positioning objects on or relative to other objects. Making your own objects support attachment.
|
|
// FileFootnotes: STD=Included in std.scad
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
// Default values for attachment code.
|
|
$tags=undef; // for backward compatibility
|
|
$tag = "";
|
|
$tag_prefix = "";
|
|
$overlap = 0;
|
|
$color = "default";
|
|
$save_color = undef; // Saved color to revert back for children
|
|
|
|
$anchor_override = undef;
|
|
$attach_to = undef;
|
|
$attach_anchor = [CENTER, CENTER, UP, 0];
|
|
$attach_norot = false;
|
|
|
|
$parent_anchor = BOTTOM;
|
|
$parent_spin = 0;
|
|
$parent_orient = UP;
|
|
|
|
$parent_size = undef;
|
|
$parent_geom = undef;
|
|
|
|
$tags_shown = "ALL";
|
|
$tags_hidden = [];
|
|
|
|
_ANCHOR_TYPES = ["intersect","hull"];
|
|
|
|
|
|
// Section: Terminology and Shortcuts
|
|
// This library adds the concept of anchoring, spin and orientation to the `cube()`, `cylinder()`
|
|
// and `sphere()` builtins, as well as to most of the shapes provided by this library itself.
|
|
// - An anchor is a place on an object which you can align the object to, or attach other objects
|
|
// to using `attach()` or `position()`. An anchor has a position, a direction, and a spin.
|
|
// The direction and spin are used to orient other objects to match when using `attach()`.
|
|
// - Spin is a simple rotation around the Z axis.
|
|
// - Orientation is rotating an object so that its top is pointed towards a given vector.
|
|
// .
|
|
// An object will first be translated to its anchor position, then spun, then oriented.
|
|
// For a detailed step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// .
|
|
// For describing directions, faces, edges, and corners the library provides a set of shortcuts
|
|
// all based on combinations of unit direction vectors. You can use these for anchoring and orienting
|
|
// attachable objects. You can also them to specify edge sets for rounding or chamfering cuboids,
|
|
// or for placing edge, face and corner masks.
|
|
// Subsection: Anchor
|
|
// Anchoring is specified with the `anchor` argument in most shape modules. Specifying `anchor`
|
|
// when creating an object will translate the object so that the anchor point is at the origin
|
|
// (0,0,0). Anchoring always occurs before spin and orientation are applied.
|
|
// .
|
|
// An anchor can be referred to in one of two ways; as a directional vector, or as a named anchor string.
|
|
// .
|
|
// When given as a vector, it points, in a general way, towards the face, edge, or corner of the
|
|
// object that you want the anchor for, relative to the center of the object. You can simply
|
|
// specify a vector like `[0,0,1]` to anchor an object at the Z+ end, but you can also use
|
|
// directional constants with names like `TOP`, `BOTTOM`, `LEFT`, `RIGHT` and `BACK` that you can add together
|
|
// to specify anchor points. See [specifying directions](attachments.scad#subsection-specifying-directions)
|
|
// below for the full list of pre-defined directional constants.
|
|
// .
|
|
// For example:
|
|
// - `[0,0,1]` is the same as `TOP` and refers to the center of the top face.
|
|
// - `[-1,0,1]` is the same as `TOP+LEFT`, and refers to the center of the top-left edge.
|
|
// - `[1,1,-1]` is the same as `BOTTOM+BACK+RIGHT`, and refers to the bottom-back-right corner.
|
|
// .
|
|
// When the object is cubical or rectangular in shape the anchors must have zero or one values
|
|
// for their components and they refer to the face centers, edge centers, or corners of the object.
|
|
// The direction of a face anchor will be perpendicular to the face, pointing outward. The direction of a edge anchor
|
|
// will be the average of the anchor directions of the two faces the edge is between. The direction
|
|
// of a corner anchor will be the average of the anchor directions of the three faces the corner is
|
|
// on.
|
|
// .
|
|
// When the object is cylindrical, conical, or spherical in nature, the anchors will be located
|
|
// around the surface of the cylinder, cone, or sphere, relative to the center.
|
|
// You can generally use an arbitrary vector to get an anchor positioned anywhere on the curved
|
|
// surface of such an object, and the anchor direction will be the surface normal at the anchor location.
|
|
// However, for anchor component pointing toward the flat face should be either -1, 1, or 0, and
|
|
// anchors that point diagonally toward one of the flat faces will select a point on the edge.
|
|
// .
|
|
// For objects in two dimensions, the natural expectation is for TOP and BOTTOM to refer to the Y direction
|
|
// of the shape. To support this, if you give an anchor in 2D that has anchor.y=0 then the Z component
|
|
// will be mapped to the Y direction. This means you can use TOP and BOTTOM for anchors of 2D objects.
|
|
// But remember that TOP and BOTTOM are three dimensional vectors and this is a special interpretation
|
|
// for 2d anchoring.
|
|
// .
|
|
// Some more complex objects, like screws and stepper motors, have named anchors to refer to places
|
|
// on the object that are not at one of the standard faces, edges or corners. For example, stepper
|
|
// motors have anchors for `"screw1"`, `"screw2"`, etc. to refer to the various screwholes on the
|
|
// stepper motor shape. The names, positions, directions, and spins of these anchors are
|
|
// specific to the object, and are documented when they exist.
|
|
// Subsection: Spin
|
|
// Spin is specified with the `spin` argument in most shape modules. Specifying a scalar `spin`
|
|
// when creating an object will rotate the object counter-clockwise around the Z axis by the given
|
|
// number of degrees. If given as a 3D vector, the object will be rotated around each of the X, Y, Z
|
|
// axes by the number of degrees in each component of the vector. Spin is always applied after
|
|
// anchoring, and before orientation. Since spin is applied after anchoring it is not what
|
|
// you might think of intuitively as spinning the shape. To do that, apply `zrot()` to the shape before anchoring.
|
|
// Subsection: Orient
|
|
// Orientation is specified with the `orient` argument in most shape modules. Specifying `orient`
|
|
// when creating an object will rotate the object such that the top of the object will be pointed
|
|
// at the vector direction given in the `orient` argument. Orientation is always applied after
|
|
// anchoring and spin. The constants `UP`, `DOWN`, `FRONT`, `BACK`, `LEFT`, and `RIGHT` can be
|
|
// added together to form the directional vector for this. ie: `LEFT+BACK`
|
|
// Subsection: Specifying Directions
|
|
// You can use direction vectors to specify anchors for objects or to specify edges, faces, and
|
|
// corners of cubes. You can simply specify these direction vectors numerically, but another
|
|
// option is to use named constants for direction vectors. These constants define unit vectors
|
|
// for the six axis directions as shown below.
|
|
// Figure(3D,Big,VPD=6): Named constants for direction vectors. Some directions have more than one name.
|
|
// $fn=12;
|
|
// stroke([[0,0,0],RIGHT], endcap2="arrow2", width=.05);
|
|
// color("black")right(.05)up(.05)move(RIGHT) text3d("RIGHT",size=.1,h=.01,anchor=LEFT,orient=FRONT);
|
|
// stroke([[0,0,0],LEFT], endcap2="arrow2", width=.05);
|
|
// color("black")left(.05)up(.05)move(LEFT) text3d("LEFT",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// stroke([[0,0,0],FRONT], endcap2="arrow2", width=.05);
|
|
// color("black")
|
|
// left(.1){
|
|
// up(.12)move(FRONT) text3d("FRONT",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// move(FRONT) text3d("FWD",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// down(.12)move(FRONT) text3d("FORWARD",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// }
|
|
// stroke([[0,0,0],BACK], endcap2="arrow2", width=.05);
|
|
// right(.05)
|
|
// color("black")move(BACK) text3d("BACK",size=.1,h=.01,anchor=LEFT,orient=FRONT);
|
|
// stroke([[0,0,0],DOWN], endcap2="arrow2", width=.05);
|
|
// color("black")
|
|
// right(.1){
|
|
// up(.12)move(BOT) text3d("DOWN",size=.1,h=.01,anchor=LEFT,orient=FRONT);
|
|
// move(BOT) text3d("BOTTOM",size=.1,h=.01,anchor=LEFT,orient=FRONT);
|
|
// down(.12)move(BOT) text3d("BOT",size=.1,h=.01,anchor=LEFT,orient=FRONT);
|
|
// }
|
|
// stroke([[0,0,0],TOP], endcap2="arrow2", width=.05);
|
|
// color("black")left(.05){
|
|
// up(.12)move(TOP) text3d("TOP",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// move(TOP) text3d("UP",size=.1,h=.01,anchor=RIGHT,orient=FRONT);
|
|
// }
|
|
// Figure(2D,Big): Named constants for direction vectors in 2D. For anchors the TOP and BOTTOM directions are collapsed into 2D as shown here, but do not try to use TOP or BOTTOM as 2D directions in other situations.
|
|
// $fn=12;
|
|
// stroke(path2d([[0,0,0],RIGHT]), endcap2="arrow2", width=.05);
|
|
// color("black")fwd(.22)left(.05)move(RIGHT) text("RIGHT",size=.1,anchor=RIGHT);
|
|
// stroke(path2d([[0,0,0],LEFT]), endcap2="arrow2", width=.05);
|
|
// color("black")right(.05)fwd(.22)move(LEFT) text("LEFT",size=.1,anchor=LEFT);
|
|
// stroke(path2d([[0,0,0],FRONT]), endcap2="arrow2", width=.05);
|
|
// color("black")
|
|
// fwd(.2)
|
|
// right(.15)
|
|
// color("black")move(BACK) { text("BACK",size=.1,anchor=LEFT); back(.14) text("(TOP)", size=.1, anchor=LEFT);}
|
|
// color("black")
|
|
// left(.15)back(.2+.14)move(FRONT){
|
|
// back(.14) text("FRONT",size=.1,anchor=RIGHT);
|
|
// text("FWD",size=.1,anchor=RIGHT);
|
|
// fwd(.14) text("FORWARD",size=.1,anchor=RIGHT);
|
|
// fwd(.28) text("(BOTTOM)",size=.1,anchor=RIGHT);
|
|
// fwd(.14*3) text("(BOT)",size=.1,anchor=RIGHT);
|
|
// }
|
|
// stroke(path2d([[0,0,0],BACK]), endcap2="arrow2", width=.05);
|
|
// Subsection: Specifying Faces
|
|
// Modules operating on faces accept a list of faces to describe the faces to operate on. Each
|
|
// face is given by a vector that points to that face. Attachments of cuboid objects onto their faces also
|
|
// work by choosing an attachment face with a single vector in the same manner.
|
|
// Figure(3D,Big,NoScales,VPD=275): The six faces of the cube. Some have faces have more than one name.
|
|
// ydistribute(50) {
|
|
// xdistribute(35){
|
|
// _show_cube_faces([BACK], botlabel=["BACK"]);
|
|
// _show_cube_faces([UP],botlabel=["TOP","UP"]);
|
|
// _show_cube_faces([RIGHT],botlabel=["RIGHT"]);
|
|
// }
|
|
// xdistribute(35){
|
|
// _show_cube_faces([FRONT],toplabel=["FRONT","FWD", "FORWARD"]);
|
|
// _show_cube_faces([DOWN],toplabel=["BOTTOM","BOT","DOWN"]);
|
|
// _show_cube_faces([LEFT],toplabel=["LEFT"]);
|
|
// }
|
|
// }
|
|
// Subsection: Specifying Edges
|
|
// Modules operating on edges use two arguments to describe the edge set they will use: The `edges` argument
|
|
// is a list of edge set descriptors to include in the edge set, and the `except` argument is a list of
|
|
// edge set descriptors to remove from the edge set.
|
|
// The default value for `edges` is `"ALL"`, the set of all edges.
|
|
// The default value for `except` is the empty set, meaning no edges are removed.
|
|
// If either argument is just a single edge set
|
|
// descriptor it can be passed directly rather than in a singleton list.
|
|
// Each edge set descriptor must be one of:
|
|
// - A vector pointing towards an edge, indicating that single edge.
|
|
// - A vector pointing towards a face, indicating all edges surrounding that face.
|
|
// - A vector pointing towards a corner, indicating all edges touching that corner.
|
|
// - The string `"X"`, indicating all X axis aligned edges.
|
|
// - The string `"Y"`, indicating all Y axis aligned edges.
|
|
// - The string `"Z"`, indicating all Z axis aligned edges.
|
|
// - The string `"ALL"`, indicating all edges.
|
|
// - The string `"NONE"`, indicating no edges at all.
|
|
// - A 3x4 array, where each entry corresponds to one of the 12 edges and is set to 1 if that edge is included and 0 if the edge is not. The edge ordering is:
|
|
// ```
|
|
// [
|
|
// [Y-Z-, Y+Z-, Y-Z+, Y+Z+],
|
|
// [X-Z-, X+Z-, X-Z+, X+Z+],
|
|
// [X-Y-, X+Y-, X-Y+, X+Y+]
|
|
// ]
|
|
// ```
|
|
// .
|
|
// You can specify edge descriptors directly by giving a vector, or you can use sums of the
|
|
// named direction vectors described above. Below we show all of the edge sets you can
|
|
// describe with sums of the direction vectors, and then we show some examples of combining
|
|
// edge set descriptors.
|
|
// Figure(3D,Big,VPD=300,NoScales): Vectors pointing toward an edge select that single edge
|
|
// ydistribute(50) {
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=BOT+RIGHT);
|
|
// _show_edges(edges=BOT+BACK);
|
|
// _show_edges(edges=BOT+LEFT);
|
|
// _show_edges(edges=BOT+FRONT);
|
|
// }
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=FWD+RIGHT);
|
|
// _show_edges(edges=BACK+RIGHT);
|
|
// _show_edges(edges=BACK+LEFT);
|
|
// _show_edges(edges=FWD+LEFT);
|
|
// }
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=TOP+RIGHT);
|
|
// _show_edges(edges=TOP+BACK);
|
|
// _show_edges(edges=TOP+LEFT);
|
|
// _show_edges(edges=TOP+FRONT);
|
|
// }
|
|
// }
|
|
// Figure(3D,Med,VPD=205,NoScales): Vectors pointing toward a face select all edges surrounding that face.
|
|
// ydistribute(50) {
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=LEFT);
|
|
// _show_edges(edges=FRONT);
|
|
// _show_edges(edges=RIGHT);
|
|
// }
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=TOP);
|
|
// _show_edges(edges=BACK);
|
|
// _show_edges(edges=BOTTOM);
|
|
// }
|
|
// }
|
|
// Figure(3D,Big,VPD=300,NoScales): Vectors pointing toward a corner select all edges surrounding that corner.
|
|
// ydistribute(50) {
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=FRONT+LEFT+TOP);
|
|
// _show_edges(edges=FRONT+RIGHT+TOP);
|
|
// _show_edges(edges=FRONT+LEFT+BOT);
|
|
// _show_edges(edges=FRONT+RIGHT+BOT);
|
|
// }
|
|
// xdistribute(30) {
|
|
// _show_edges(edges=TOP+LEFT+BACK);
|
|
// _show_edges(edges=TOP+RIGHT+BACK);
|
|
// _show_edges(edges=BOT+LEFT+BACK);
|
|
// _show_edges(edges=BOT+RIGHT+BACK);
|
|
// }
|
|
// }
|
|
// Figure(3D,Med,VPD=205,NoScales): Named Edge Sets
|
|
// ydistribute(50) {
|
|
// xdistribute(30) {
|
|
// _show_edges(edges="X");
|
|
// _show_edges(edges="Y");
|
|
// _show_edges(edges="Z");
|
|
// }
|
|
// xdistribute(30) {
|
|
// _show_edges(edges="ALL");
|
|
// _show_edges(edges="NONE");
|
|
// }
|
|
// }
|
|
// Figure(3D,Big,VPD=310,NoScales): Next are some examples showing how you can combine edge descriptors to obtain different edge sets. You can specify the top front edge with a numerical vector or by combining the named direction vectors. If you combine them as a list you get all the edges around the front and top faces. Adding `except` removes an edge.
|
|
// xdistribute(43){
|
|
// _show_edges(_edges([0,-1,1]),toplabel=["edges=[0,-1,1]"]);
|
|
// _show_edges(_edges(TOP+FRONT),toplabel=["edges=TOP+FRONT"]);
|
|
// _show_edges(_edges([TOP,FRONT]),toplabel=["edges=[TOP,FRONT]"]);
|
|
// _show_edges(_edges([TOP,FRONT],TOP+FRONT),toplabel=["edges=[TOP,FRONT]","except=TOP+FRONT"]);
|
|
// }
|
|
// Figure(3D,Big,VPD=310,NoScales): Using `except=BACK` removes the four edges surrounding the back face if they are present in the edge set. In the first example only one edge needs to be removed. In the second example we remove two of the Z-aligned edges. The third example removes all four back edges from the default edge set of all edges. You can explicitly give `edges="ALL"` but it is not necessary, since this is the default. In the fourth example, the edge set of Y-aligned edges contains no back edges, so the `except` parameter has no effect.
|
|
// xdistribute(43){
|
|
// _show_edges(_edges(BOT,BACK), toplabel=["edges=BOT","except=BACK"]);
|
|
// _show_edges(_edges("Z",BACK), toplabel=["edges=\"Z\"", "except=BACK"]);
|
|
// _show_edges(_edges("ALL",BACK), toplabel=["(edges=\"ALL\")", "except=BACK"]);
|
|
// _show_edges(_edges("Y",BACK), toplabel=["edges=\"Y\"","except=BACK"]);
|
|
// }
|
|
// Figure(3D,Big,NoScales,VPD=310): On the left `except` is a list to remove two edges. In the center we show a corner edge set defined by a numerical vector, and at the right we remove that same corner edge set with named direction vectors.
|
|
// xdistribute(52){
|
|
// _show_edges(_edges("ALL",[FRONT+RIGHT,FRONT+LEFT]),
|
|
// toplabel=["except=[FRONT+RIGHT,"," FRONT+LEFT]"]);
|
|
// _show_edges(_edges([1,-1,1]),toplabel=["edges=[1,-1,1]"]);
|
|
// _show_edges(_edges([TOP,BOT], TOP+RIGHT+FRONT),toplabel=["edges=[TOP,BOT]","except=TOP+RIGHT+FRONT"]);
|
|
// }
|
|
// Subsection: Specifying Corners
|
|
// Modules operating on corners use two arguments to describe the corner set they will use: The `corners` argument
|
|
// is a list of corner set descriptors to include in the corner set, and the `except` argument is a list of
|
|
// corner set descriptors to remove from the corner set.
|
|
// The default value for `corners` is `"ALL"`, the set of all corners.
|
|
// The default value for `except` is the empty set, meaning no corners are removed.
|
|
// If either argument is just a single corner set
|
|
// descriptor it can be passed directly rather than in a singleton list.
|
|
// Each corner set descriptor must be one of:
|
|
// - A vector pointing towards a corner, indicating that corner.
|
|
// - A vector pointing towards an edge indicating both corners at the ends of that edge.
|
|
// - A vector pointing towards a face, indicating all the corners of that face.
|
|
// - The string `"ALL"`, indicating all corners.
|
|
// - The string `"NONE"`, indicating no corners at all.
|
|
// - A length 8 vector where each entry corresponds to a corner and is 1 if the corner is included and 0 if it is excluded. The corner ordering is
|
|
// ```
|
|
// [X-Y-Z-, X+Y-Z-, X-Y+Z-, X+Y+Z-, X-Y-Z+, X+Y-Z+, X-Y+Z+, X+Y+Z+]
|
|
// ```
|
|
// .
|
|
// You can specify corner descriptors directly by giving a vector, or you can use sums of the
|
|
// named direction vectors described above. Below we show all of the corner sets you can
|
|
// describe with sums of the direction vectors and then we show some examples of combining
|
|
// corner set descriptors.
|
|
// Figure(3D,Big,NoScales,VPD=300): Vectors pointing toward a corner select that corner.
|
|
// ydistribute(55) {
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=FRONT+LEFT+TOP);
|
|
// _show_corners(corners=FRONT+RIGHT+TOP);
|
|
// _show_corners(corners=FRONT+LEFT+BOT);
|
|
// _show_corners(corners=FRONT+RIGHT+BOT);
|
|
// }
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=TOP+LEFT+BACK);
|
|
// _show_corners(corners=TOP+RIGHT+BACK);
|
|
// _show_corners(corners=BOT+LEFT+BACK);
|
|
// _show_corners(corners=BOT+RIGHT+BACK);
|
|
// }
|
|
// }
|
|
// Figure(3D,Big,NoScales,VPD=340): Vectors pointing toward an edge select the corners and the ends of the edge.
|
|
// ydistribute(55) {
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=BOT+RIGHT);
|
|
// _show_corners(corners=BOT+BACK);
|
|
// _show_corners(corners=BOT+LEFT);
|
|
// _show_corners(corners=BOT+FRONT);
|
|
// }
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=FWD+RIGHT);
|
|
// _show_corners(corners=BACK+RIGHT);
|
|
// _show_corners(corners=BACK+LEFT);
|
|
// _show_corners(corners=FWD+LEFT);
|
|
// }
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=TOP+RIGHT);
|
|
// _show_corners(corners=TOP+BACK);
|
|
// _show_corners(corners=TOP+LEFT);
|
|
// _show_corners(corners=TOP+FRONT);
|
|
// }
|
|
// }
|
|
// Figure(3D,Med,NoScales,VPD=225): Vectors pointing toward a face select the corners of the face.
|
|
// ydistribute(55) {
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=LEFT);
|
|
// _show_corners(corners=FRONT);
|
|
// _show_corners(corners=RIGHT);
|
|
// }
|
|
// xdistribute(35) {
|
|
// _show_corners(corners=TOP);
|
|
// _show_corners(corners=BACK);
|
|
// _show_corners(corners=BOTTOM);
|
|
// }
|
|
// }
|
|
// Figure(3D,Med,NoScales,VPD=200): Corners by name
|
|
// xdistribute(35) {
|
|
// _show_corners(corners="ALL");
|
|
// _show_corners(corners="NONE");
|
|
// }
|
|
// Figure(3D,Big,NoScales,VPD=300): Next are some examples showing how you can combine corner descriptors to obtain different corner sets. You can specify corner sets numerically or by adding together named directions. The third example shows a list of two corner specifications, giving all the corners on the front face or the right face.
|
|
// xdistribute(52){
|
|
// _show_corners(_corners([1,-1,-1]),toplabel=["corners=[1,-1,-1]"]);
|
|
// _show_corners(_corners(BOT+RIGHT+FRONT),toplabel=["corners=BOT+RIGHT+FRONT"]);
|
|
// _show_corners(_corners([FRONT,RIGHT]), toplabel=["corners=[FRONT,RIGHT]"]);
|
|
// }
|
|
// Figure(3D,Big,NoScales,VPD=300): Corners for one edge, two edges, and all the edges except the two on one edge. Note that since the default is all edges, you only need to give the except argument in this case:
|
|
// xdistribute(52){
|
|
// _show_corners(_corners(FRONT+TOP), toplabel=["corners=FRONT+TOP"]);
|
|
// _show_corners(_corners([FRONT+TOP,BOT+BACK]), toplabel=["corners=[FRONT+TOP,"," BOT+BACK]"]);
|
|
// _show_corners(_corners("ALL",FRONT+TOP), toplabel=["(corners=\"ALL\")","except=FRONT+TOP"]);
|
|
// }
|
|
// Figure(3D,Med,NoScales,VPD=240): The first example shows a single corner removed from the top corners using a numerical vector. The second one shows removing a set of two corner descriptors from the implied set of all corners.
|
|
// xdistribute(58){
|
|
// _show_corners(_corners(TOP,[1,1,1]), toplabel=["corners=TOP","except=[1,1,1]"]);
|
|
// _show_corners(_corners("ALL",[FRONT+RIGHT+TOP,FRONT+LEFT+BOT]),
|
|
// toplabel=["except=[FRONT+RIGHT+TOP,"," FRONT+LEFT+BOT]"]);
|
|
// }
|
|
// Subsection: Anchoring of Non-Rectangular Objects and Anchor Type (atype)
|
|
// We focused above on rectangular objects that have well-defined faces and edges aligned with the coordinate axes.
|
|
// Things get difficult when the objects are curved, or even when their edges are not neatly aligned with the coordinate axes.
|
|
// In these cases, the library may provide multiple different anchoring schemes, called the anchor types. When a module supports
|
|
// multiple anchor types, use the `atype=` parameter to select the anchor type you need.
|
|
// .
|
|
// First consider the case of a simple rectangle whose corners have been rounded. Where should the anchors lie?
|
|
// The default anchor type puts them in the same location as the anchors of an unrounded rectangle, which means that for
|
|
// positive rounding radii, they are not even located on the perimeter of the object.
|
|
// Figure(2D,Med,NoAxes): Default "box" atype anchors for a rounded {{rect()}}
|
|
// rect([100,50], rounding=[10,0,0,-20],chamfer=[0,10,-20,0]) show_anchors();
|
|
// Continues:
|
|
// This choice enables you to position the box, or attach things to it, without regard to its rounding or chamfers. If you need to
|
|
// anchor onto the roundovers or chamfers then you can use the "perim" anchor type:
|
|
// Figure(2D,Med,NoAxes): The "perim" atype for a rounded and chamfered {{rect()}}
|
|
// rect([100,50], rounding=[10,0,0,-20],chamfer=[0,10,-20,0],atype="perim") show_anchors();
|
|
// Continues:
|
|
// With this anchor type, the anchors are located on the perimeter. For positive roundings they point in the standard anchor direction;
|
|
// for negative roundings they are parallel to the base. As noted above, for circles, cylinders, and spheres, the anchor point is
|
|
// determined by choosing the point where the anchor vector intersects the shape. On a circle, this results in an anchor whose direction
|
|
// matches the user provided anchor vector. But on an ellipse, something else happens:
|
|
// Figure(2D,Med,NoAxes): Anchors on an ellipse. The red arrow shows a TOP+RIGHT anchor direction.
|
|
// ellipse([70,30]) show_anchors();
|
|
// stroke([[0,0],[45,45]], color="red",endcap2="arrow2");
|
|
// Continues:
|
|
// For a TOP+RIGHT anchor direction, the surface normal at the intersection point does not match the anchor direction,
|
|
// so the direction of the anchor shown in blue does not match the direction specified, in red.
|
|
// Anchors computed this way have anchor type "intersect". When a shape is concave, intersection anchors can produce
|
|
// a result buried inside the shape's concavity. Consider the RIGHT anchor of this supershape example:
|
|
// Figure(2D,Med,NoAxes): A supershape with "intersect" anchor type:
|
|
// supershape(n=150,r=75, m1=4, n1=4.0,n2=16, n3=1.5, a=0.9, b=9,atype="intersect") show_anchors();
|
|
// Continues:
|
|
// A different anchor type called "hull" finds anchors that are on the convex hull of the shape.
|
|
// Figure(2D,Med,NoAxes): A supershape with "hull" anchor type:
|
|
// supershape(n=150,r=55, m1=4, n1=4.0,n2=16, n3=1.5, a=0.9, b=9,atype="hull") show_anchors();
|
|
// Continues:
|
|
// Hull anchoring works by creating the line (or plane in 3D) that is normal to the specified anchor direction, and
|
|
// finding the point farthest from the center that intersects that line (or plane).
|
|
// Figure(2D,Med,NoAxes): Finding the RIGHT and BACK+LEFT "hull" anchors
|
|
// supershape(n=128,r=55, m1=4, n1=4.0,n2=16, n3=1.5, a=0.9, b=9,atype="hull") {
|
|
// position(RIGHT) color_this("red")rect([1,90],anchor=LEFT);
|
|
// attach(RIGHT)anchor_arrow2d(13);
|
|
// attach(BACK+LEFT) {
|
|
// anchor_arrow2d(13);
|
|
// color_this("red")rect([30,1]);
|
|
// }
|
|
// }
|
|
// Continues:
|
|
// In the example the RIGHT anchor is found when the normal line (shown in red) is tangent to the shape at two points.
|
|
// The anchor is then taken to be the midpoint. The BACK+LEFT anchor occurs with a single tangent point, and the
|
|
// anchor point is located at the tangent point. For circles intersection is done to the exact circle, but for other
|
|
// shapes these calculations are done on the point lists that defines the shape, so if you change the number of points
|
|
// in the list, the precise location of the anchors can change. You can also get surprising results if your point list is badly chosen.
|
|
// Figure(2D,Med,NoAxes): Circle anchor in blue. The red anchor is computed to a point list of a circle with 17 segments.
|
|
// circle(r=31,$fn=128) attach(TOP)anchor_arrow2d(15);
|
|
// region(circle(r=33,$fn=17)) {color("red")attach(TOP)anchor_arrow2d(13);}
|
|
// Continues:
|
|
// The figure shows a large horizontal offset due to a poor choice of sampling for the circular shape when using the "hull" anchor type.
|
|
// The determination of "hull" or "intersect" anchors may depend on the location of the centerpoint used in the computation.
|
|
// Some of the modules allow you to change the centerpoint using a `cp=` argument. If you need to change the centerpoint for
|
|
// a module that does not provide this option, you can use the generic {{region()}} module, which will let you specify a centerpoint.
|
|
// The default center point is the centroid, specified by "centroid". You can also choose "mean", which gives the mean of all
|
|
// the data points, or "bbox", which gives the centerpoint of the bounding box for the data. Your last option for centerpoint is to
|
|
// choose an arbitrary point that meets your needs.
|
|
// Figure(2D,Med,NoAxes): The centerpoint for "intersect" anchors is located at the red dot
|
|
// region(supershape(n=128,r=55, m1=4, n1=4.0,n2=16, n3=1.5, a=0.9, b=9),atype="intersect",cp=[0,30]) show_anchors();
|
|
// color("red")back(30)circle(r=2,$fn=16);
|
|
// Continues:
|
|
// Note that all the anchors for an object have to be determined based on one anchor type and relative to the same centerpoint.
|
|
// The supported anchor types for each module appear in the "Anchor Types" section of its entry.
|
|
|
|
|
|
|
|
|
|
|
|
// Section: Attachment Positioning
|
|
|
|
// Module: position()
|
|
// Synopsis: Attaches children to a parent object at an anchor point.
|
|
// SynTags: Trans
|
|
// Topics: Attachments
|
|
// See Also: attachable(), attach(), orient()
|
|
// Usage:
|
|
// PARENT() position(at) CHILDREN;
|
|
// Description:
|
|
// Attaches children to a parent object at an anchor point. For a step-by-step explanation
|
|
// of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// at = The vector, or name of the parent anchor point to attach to.
|
|
// Side Effects:
|
|
// `$attach_anchor` for each `from=` anchor given, this is set to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$attach_to` is set to `undef`.
|
|
// `$attach_norot` is set to `true`.
|
|
// Example:
|
|
// spheroid(d=20) {
|
|
// position(TOP) cyl(l=10, d1=10, d2=5, anchor=BOTTOM);
|
|
// position(RIGHT) cyl(l=10, d1=10, d2=5, anchor=BOTTOM);
|
|
// position(FRONT) cyl(l=10, d1=10, d2=5, anchor=BOTTOM);
|
|
// }
|
|
module position(at,from)
|
|
{
|
|
if (is_def(from)){
|
|
echo("'from' argument of position() has changed to 'at' and will be removed in a future version");
|
|
}
|
|
dummy0=assert(num_defined([at,from])==1, "Cannot give both `at` argument and the deprectated `from` argument to position()");
|
|
at = first_defined([at,from]);
|
|
req_children($children);
|
|
dummy1=assert($parent_geom != undef, "No object to position relative to.");
|
|
anchors = (is_vector(at)||is_string(at))? [at] : at;
|
|
two_d = _attach_geom_2d($parent_geom);
|
|
for (anchr = anchors) {
|
|
anch = _find_anchor(anchr, $parent_geom);
|
|
$attach_to = undef;
|
|
$attach_anchor = anch;
|
|
$attach_norot = true;
|
|
translate(anch[1]) children();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Module: orient()
|
|
// Synopsis: Orients children's tops in the directon of the specified anchor.
|
|
// SynTags: Trans
|
|
// Topics: Attachments
|
|
// See Also: attachable(), attach(), position()
|
|
// Usage:
|
|
// PARENT() orient(anchor, [spin]) CHILDREN;
|
|
// Description:
|
|
// Orients children such that their top is tilted in the direction of the specified parent anchor point.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// anchor = The anchor on the parent which you want to match the orientation of.
|
|
// spin = The spin to add to the children. (Overrides anchor spin.)
|
|
// Side Effects:
|
|
// `$attach_to` is set to `undef`.
|
|
// `$attach_norot` is set to `true`.
|
|
// Example: When orienting to an anchor, the spin of the anchor may cause confusion:
|
|
// prismoid([50,50],[30,30],h=40) {
|
|
// position(TOP+RIGHT)
|
|
// orient(RIGHT)
|
|
// prismoid([30,30],[0,5],h=20,anchor=BOT+LEFT);
|
|
// }
|
|
// Example: You can override anchor spin with `spin=`.
|
|
// prismoid([50,50],[30,30],h=40) {
|
|
// position(TOP+RIGHT)
|
|
// orient(RIGHT,spin=0)
|
|
// prismoid([30,30],[0,5],h=20,anchor=BOT+LEFT);
|
|
// }
|
|
// Example: Or you can anchor the child from the back
|
|
// prismoid([50,50],[30,30],h=40) {
|
|
// position(TOP+RIGHT)
|
|
// orient(RIGHT)
|
|
// prismoid([30,30],[0,5],h=20,anchor=BOT+BACK);
|
|
// }
|
|
module orient(anchor, spin) {
|
|
req_children($children);
|
|
check=
|
|
assert($parent_geom != undef, "No parent to orient from!")
|
|
assert(is_string(anchor) || is_vector(anchor));
|
|
anch = _find_anchor(anchor, $parent_geom);
|
|
two_d = _attach_geom_2d($parent_geom);
|
|
fromvec = two_d? BACK : UP;
|
|
spin = default(spin, anch[3]);
|
|
dummy=assert(is_finite(spin));
|
|
|
|
$attach_to = undef;
|
|
$attach_norot = true;
|
|
if (two_d)
|
|
rot(spin)rot(from=fromvec, to=anch[2]) children();
|
|
else
|
|
rot(spin, from=fromvec, to=anch[2]) children();
|
|
}
|
|
|
|
|
|
|
|
// Module: align()
|
|
// Synopsis: Position and orient children with alignment to parent edges.
|
|
// SynTags: Trans
|
|
// Topics: Attachments
|
|
// See Also: attachable(), attach(), position(), orient()
|
|
// Usage:
|
|
// PARENT() align(anchor, [orient], [spin], [inside=]) CHILDREN;
|
|
// Description:
|
|
// Positions children to the specified anchor(s) on the parent and anchors the
|
|
// children so that they are aligned with the edge(s) of the parent at those parent anchors.
|
|
// You can specify a parent anchor point in `orient` and in this case, the top of the child
|
|
// is tilted in the direction of that anchor.
|
|
// This means you can easily place children so they are aligned flush with edges of the parent.
|
|
// In contrast, with {{position()}} you will have to work out the correct anchor for the children
|
|
// which is not always obvious. It also enables you to place several children that have different
|
|
// anchors, which would otherwise require several {{position()}} calls. The inside argument
|
|
// causes the object to appear inside the parent for use with {{diff()}}.
|
|
// .
|
|
// When you use `align()`, the `orient=` and `anchor=` arguments to the child objects are overriden,
|
|
// so they do not have any effect. The `spin=` argument to the child still applies.
|
|
// Arguments:
|
|
// anchor = parent anchor or list of parent anchors for positioning children
|
|
// orient = parent anchor to give direction for orienting the children. Default: UP
|
|
// spin = spin in degrees for rotating the children. Default: Derived from orient anchor
|
|
// ---
|
|
// inside = if true, place object inside the parent instead of outside. Default: false
|
|
// Side Effects:
|
|
// `$attach_anchor` for each anchor given, this is set to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$attach_to` is set to `undef`.
|
|
// `$attach_norot` is set to `true`.
|
|
// `$anchor_override` is set to the anchor required for proper positioning of the child.
|
|
// if inside is true then set default tag to "remove"
|
|
// Example: Child would require anchor of RIGHT+FRONT+BOT if placed with {{position()}}.
|
|
// cuboid([50,40,15])
|
|
// align(RIGHT+FRONT+TOP)
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// Example: Child requires a different anchor for each position, so explicit specification of the anchor for children is impossible in this case, without using two separate commands.
|
|
// cuboid([50,40,15])
|
|
// align([RIGHT+TOP,LEFT+TOP])
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// Example: If you try to spin your child, the spin happens after the alignment anchor, so the child will not be flush:
|
|
// cuboid([50,40,15])
|
|
// align([RIGHT+TOP])
|
|
// color("lightblue")
|
|
// prismoid([10,5],[7,4],height=4,spin=90);
|
|
// Example: You can instead spin the attached children using the spin parameter to `align()`. In this example, the required anchor is BOT+FWD, which is less obvious.
|
|
// cuboid([50,40,15])
|
|
// align(RIGHT+TOP,spin=90)
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// Example: Here the child is oriented to the RIGHT, so it appears flush with the top. In this case you don't have to figure out that the required child anchor is BOT+BACK.
|
|
// cuboid([50,40,15])
|
|
// align(RIGHT+TOP,RIGHT)
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// Example: If you change the orientation the child still appears aligned flush in its changed orientation:
|
|
// cuboid([50,40,15])
|
|
// align(RIGHT+TOP,DOWN)
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// Example: Objects on the right already have nonzero spin by default, so setting spin=0 changes the spin:
|
|
// prismoid(50,30,25){
|
|
// align(RIGHT+TOP,RIGHT,spin=0)
|
|
// color("lightblue")prismoid([10,5],[7,4],height=4);
|
|
// align(RIGHT+BOT,RIGHT)
|
|
// color("green")prismoid([10,5],[7,4],height=4);
|
|
// }
|
|
// Example: Setting inside=true enables us to subtract the child from the parent with {{diff()}. The "remove" tag is automatically applied when you set `inside=true`.
|
|
// diff()
|
|
// cuboid([40,30,10])
|
|
// move(.1*[0,-1,1])
|
|
// align(FRONT+TOP,inside=true)
|
|
// prismoid([10,5],[7,5],height=4);
|
|
module align(anchor,orient=UP,spin,inside=false)
|
|
{
|
|
req_children($children);
|
|
dummy1=assert($parent_geom != undef, "No object to align to.")
|
|
assert(is_string(orient) || is_vector(orient),"Bad orient value");
|
|
position_anchors = (is_vector(anchor)||is_string(anchor))? [anchor] : anchor;
|
|
two_d = _attach_geom_2d($parent_geom);
|
|
fromvec = two_d? BACK : UP;
|
|
|
|
orient_anch = _find_anchor(orient, $parent_geom);
|
|
spin = default(spin, orient_anch[3]);
|
|
dummy2=assert(is_finite(spin));
|
|
|
|
$attach_to = undef;
|
|
$attach_norot = true;
|
|
|
|
factor = inside?1:-1;
|
|
|
|
for (thisanch = position_anchors) {
|
|
pos_anch = _find_anchor(thisanch, $parent_geom);
|
|
init_anch = two_d ? rot(from=orient_anch[2], to=fromvec, p=zrot(-spin,pos_anch[0]))
|
|
: rot(spin, from=fromvec, to=orient_anch[2], reverse=true, p=pos_anch[0]);
|
|
quant_anch = [for(v=init_anch) sign(round(v))];
|
|
$anchor_override = two_d && quant_anch.y!=0 ? [quant_anch.x,factor*quant_anch.y]
|
|
: !two_d && quant_anch.z!=0 ? [quant_anch.x,quant_anch.y, factor*quant_anch.z]
|
|
: factor*quant_anch;
|
|
$attach_anchor = pos_anch;
|
|
translate(pos_anch[1]) {
|
|
if (two_d)
|
|
rot(spin)rot(from=fromvec, to=orient_anch[2])
|
|
default_tag("remove",inside) children();
|
|
else
|
|
rot(spin, from=fromvec, to=orient_anch[2])
|
|
default_tag("remove",inside) children();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Module: attach()
|
|
// Synopsis: Attaches children to a parent object at an anchor point and orientation.
|
|
// SynTags: Trans
|
|
// Topics: Attachments
|
|
// See Also: attachable(), position(), face_profile(), edge_profile(), corner_profile()
|
|
// Usage:
|
|
// PARENT() attach(from, [overlap=], [norot=]) CHILDREN;
|
|
// PARENT() attach(from, to, [overlap=], [norot=]) CHILDREN;
|
|
// Description:
|
|
// Attaches children to a parent object at an anchor point and orientation. Attached objects will
|
|
// be overlapped into the parent object by a little bit, as specified by the `$overlap`
|
|
// value (0 by default), or by the overriding `overlap=` argument. This is to prevent OpenSCAD
|
|
// from making non-manifold objects. You can define `$overlap=` as an argument in a parent
|
|
// module to set the default for all attachments to it. For a step-by-step explanation of
|
|
// attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// from = The vector, or name of the parent anchor point to attach to.
|
|
// to = Optional name of the child anchor point. If given, orients the child such that the named anchors align together rotationally.
|
|
// ---
|
|
// overlap = Amount to sink child into the parent. Equivalent to `down(X)` after the attach. This defaults to the value in `$overlap`, which is `0` by default.
|
|
// norot = If true, don't rotate children when attaching to the anchor point. Only translate to the anchor point.
|
|
// Side Effects:
|
|
// `$idx` is set to the index number of each anchor if a list of anchors is given. Otherwise is set to `0`.
|
|
// `$attach_anchor` for each `from=` anchor given, this is set to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$attach_to` is set to the value of the `to=` argument, if given. Otherwise, `undef`
|
|
// `$attach_norot` is set to the value of the `norot=` argument.
|
|
// Example:
|
|
// spheroid(d=20) {
|
|
// attach(TOP) down(1.5) cyl(l=11.5, d1=10, d2=5, anchor=BOTTOM);
|
|
// attach(RIGHT, BOTTOM) down(1.5) cyl(l=11.5, d1=10, d2=5);
|
|
// attach(FRONT, BOTTOM, overlap=1.5) cyl(l=11.5, d1=10, d2=5);
|
|
// }
|
|
module attach(from, to, overlap, norot=false)
|
|
{
|
|
req_children($children);
|
|
assert($parent_geom != undef, "No object to attach to!");
|
|
overlap = (overlap!=undef)? overlap : $overlap;
|
|
anchors = (is_vector(from)||is_string(from))? [from] : from;
|
|
for ($idx = idx(anchors)) {
|
|
anchr = anchors[$idx];
|
|
anch = _find_anchor(anchr, $parent_geom);
|
|
two_d = _attach_geom_2d($parent_geom);
|
|
$attach_to = to;
|
|
$attach_anchor = anch;
|
|
$attach_norot = norot;
|
|
olap = two_d? [0,-overlap,0] : [0,0,-overlap];
|
|
if (norot || (norm(anch[2]-UP)<1e-9 && anch[3]==0)) {
|
|
translate(anch[1]) translate(olap) children();
|
|
} else {
|
|
fromvec = two_d? BACK : UP;
|
|
translate(anch[1]) rot(anch[3],from=fromvec,to=anch[2]) translate(olap) children();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Section: Tagging
|
|
|
|
// Module: tag()
|
|
// Synopsis: Assigns a tag to an object
|
|
// Topics: Attachments
|
|
// See Also: force_tag(), recolor(), hide(), show_only(), diff(), intersect()
|
|
// Usage:
|
|
// PARENT() tag(tag) CHILDREN;
|
|
// Description:
|
|
// Assigns the specified tag to all of the children. Note that if you want
|
|
// to apply a tag to non-tag-aware objects you need to use {{force_tag()}} instead.
|
|
// This works by setting the `$tag` variable, but it provides extra error checking and
|
|
// handling of scopes. You may set `$tag` directly yourself, but this is not recommended.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// tag = tag string, which must not contain any spaces.
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example(3D): Applies the tag to both cuboids instead of having to repeat `$tag="remove"` for each one.
|
|
// diff("remove")
|
|
// cuboid(10){
|
|
// position(TOP) cuboid(3);
|
|
// tag("remove")
|
|
// {
|
|
// position(FRONT) cuboid(3);
|
|
// position(RIGHT) cuboid(3);
|
|
// }
|
|
// }
|
|
module tag(tag)
|
|
{
|
|
req_children($children);
|
|
check=
|
|
assert(is_string(tag),"tag must be a string")
|
|
assert(undef==str_find(tag," "),str("Tag string \"",tag,"\" contains a space, which is not allowed"));
|
|
$tag = str($tag_prefix,tag);
|
|
children();
|
|
}
|
|
|
|
|
|
// Module: force_tag()
|
|
// Synopsis: Assigns a tag to a non-attachable object.
|
|
// Topics: Attachments
|
|
// See Also: tag(), recolor(), hide(), show_only(), diff(), intersect()
|
|
// Usage:
|
|
// PARENT() force_tag([tag]) CHILDREN;
|
|
// Description:
|
|
// You use this module when you want to make a non-attachable or non-BOSL2 module respect tags.
|
|
// It applies to its children the tag specified (or the tag currently in force if you don't specify a tag),
|
|
// making a final determination about whether to show or hide the children.
|
|
// This means that tagging in children's children will be ignored.
|
|
// This module is specifically provided for operating on children that are not tag aware such as modules
|
|
// that don't use {{attachable()}} or built in modules such as
|
|
// - `polygon()`
|
|
// - `projection()`
|
|
// - `polyhedron()` (or use [`vnf_polyhedron()`](vnf.scad#vnf_polyhedron))
|
|
// - `linear_extrude()` (or use [`linear_sweep()`](regions.scad#linear_sweep))
|
|
// - `rotate_extrude()`
|
|
// - `surface()`
|
|
// - `import()`
|
|
// - `difference()`
|
|
// - `intersection()`
|
|
// - `hull()`
|
|
// .
|
|
// When you use tag-based modules like {{diff()}} with a non-attachable module, the result may be puzzling.
|
|
// Any time a test occurs for display of child() that test will succeed. This means that when diff() checks
|
|
// to see if it should show a module it will show it, and when diff() checks to see if it should subtract the module
|
|
// it will subtract it. The result will be a hole, possibly with zero-thickness edges or faces. In order to
|
|
// get the correct behavior, every non-attachable module needs an invocation of force_tag, even ones
|
|
// that are not tagged.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// tag = tag string, which must not contain any spaces
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example(2D): This example produces the full square without subtracting the "remove" item. When you use non-attachable modules with tags, results are unpredictable.
|
|
// diff()
|
|
// {
|
|
// polygon(square(10));
|
|
// move(-[.01,.01])polygon(square(5),$tag="remove");
|
|
// }
|
|
// Example(2D): Adding force_tag() fixes the model. Note you need to add it to *every* non-attachable module, even the untagged ones, as shown here.
|
|
// diff()
|
|
// {
|
|
// force_tag()
|
|
// polygon(square(10));
|
|
// force_tag("remove")
|
|
// move(-[.01,.01])polygon(square(5));
|
|
// }
|
|
module force_tag(tag)
|
|
{
|
|
req_children($children);
|
|
check1=assert(is_undef(tag) || is_string(tag),"tag must be a string");
|
|
$tag = str($tag_prefix,default(tag,$tag));
|
|
assert(undef==str_find($tag," "),str("Tag string \"",$tag,"\" contains a space, which is not allowed"));
|
|
if(_is_shown())
|
|
show_all()
|
|
children();
|
|
}
|
|
|
|
|
|
|
|
// Module: default_tag()
|
|
// Synopsis: Sets a default tag for all children.
|
|
// Topics: Attachments
|
|
// See Also: force_tag(), recolor(), hide(), show_only(), diff(), intersect()
|
|
// Usage:
|
|
// PARENT() default_tag(tag) CHILDREN;
|
|
// Description:
|
|
// Sets a default tag for all of the children. This is intended to be used to set a tag for a whole module
|
|
// that is then used outside the module, such as setting the tag to "remove" for easy operation with {{diff()}}.
|
|
// The default_tag() module sets the `$tag` variable only if it is not already
|
|
// set so you can have a module set a default tag of "remove" but that tag can be overridden by a {{tag()}}
|
|
// in force from a parent. If you use {{tag()}} it will override any previously
|
|
// specified tag from a parent, which can be very confusing to a user trying to change the tag on a module.
|
|
// The `do_tag` parameter allows you to apply a default tag conditionally without having to repeat the children.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// tag = tag string, which must not contain any spaces.
|
|
// do_tag = if false do not set the tag.
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example(3D): The module thing() is defined with {{tag()}} and the user applied tag of "keep_it" is ignored, leaving the user puzzled.
|
|
// module thing() { tag("remove") cuboid(10);}
|
|
// diff()
|
|
// cuboid(20){
|
|
// position(TOP) thing();
|
|
// position(RIGHT) tag("keep_it") thing();
|
|
// }
|
|
// Example(3D): Using default_tag() fixes this problem: the user applied tag does not get overridden by the tag hidden in the module definition.
|
|
// module thing() { default_tag("remove") cuboid(10);}
|
|
// diff()
|
|
// cuboid(20){
|
|
// position(TOP) thing();
|
|
// position(RIGHT) tag("keep_it") thing();
|
|
// }
|
|
module default_tag(tag,do_tag=true)
|
|
{
|
|
if ($tag=="" && do_tag) tag(tag) children();
|
|
else children();
|
|
}
|
|
|
|
|
|
// Module: tag_scope()
|
|
// Synopsis: Creates a new tag scope.
|
|
// See Also: tag(), force_tag(), default_tag()
|
|
// Topics: Attachments
|
|
// Usage:
|
|
// tag_scope([scope]) CHILDREN;
|
|
// Description:
|
|
// Creates a tag scope with locally altered tag names to avoid tag name conflict with other code.
|
|
// This is necessary when writing modules because the module's caller might happen to use the same tags.
|
|
// Note that if you directly set the `$tag` variable then tag scoping will not work correctly.
|
|
// Side Effects:
|
|
// `$tag_prefix` is set to the value of `scope=` if given, otherwise is set to a random string.
|
|
// Example: In this example the ring module uses "remove" tags which will conflict with use of the same tags by the parent.
|
|
// module ring(r,h,w=1,anchor,spin,orient)
|
|
// {
|
|
// tag_scope("ringscope")
|
|
// attachable(anchor,spin,orient,r=r,h=h){
|
|
// diff()
|
|
// cyl(r=r,h=h)
|
|
// tag("remove") cyl(r=r-w,h=h+1);
|
|
// children();
|
|
// }
|
|
// }
|
|
// // Calling the module using "remove" tags
|
|
// // will conflict with internal tag use in
|
|
// // the ring module.
|
|
// $fn=32;
|
|
// diff(){
|
|
// ring(10,7,w=4);
|
|
// tag("remove")ring(8,8);
|
|
// tag("remove")diff("rem"){
|
|
// ring(9.5,8,w=1);
|
|
// tag("rem")ring(9.5,8,w=.3);
|
|
// }
|
|
// }
|
|
module tag_scope(scope){
|
|
req_children($children);
|
|
scope = is_undef(scope) ? rand_str(20) : scope;
|
|
assert(is_string(scope), "scope must be a string");
|
|
assert(undef==str_find(scope," "),str("Scope string \"",scope,"\" contains a space, which is not allowed"));
|
|
$tag_prefix=scope;
|
|
children();
|
|
}
|
|
|
|
|
|
// Section: Attachment Modifiers
|
|
|
|
// Module: diff()
|
|
// Synopsis: Performs a differencing operation using tags rather than hierarchy to control what happens.
|
|
// Topics: Attachments
|
|
// See Also: tag(), force_tag(), recolor(), show_only(), hide(), tag_diff(), intersect(), tag_intersect()
|
|
// Usage:
|
|
// diff([remove], [keep]) PARENT() CHILDREN;
|
|
// Description:
|
|
// Performs a differencing operation using tags to control what happens. This is specifically intended to
|
|
// address the situation where you want differences between a parent and child object, something
|
|
// that is impossible with the native difference() module.
|
|
// The children to diff are grouped into three categories, regardless of nesting level.
|
|
// The `remove` argument is a space delimited list of tags specifying objects to
|
|
// subtract. The `keep` argument is a similar list of tags giving objects to be kept.
|
|
// Objects not matching either the `remove` or `keep` lists form the third category of base objects.
|
|
// To produce its output, diff() forms the union of all the base objects and then
|
|
// subtracts all the objects with tags in `remove`. Finally it adds in objects listed in `keep`.
|
|
// Attachable objects should be tagged using {{tag()}}
|
|
// and non-attachable objects with {{force_tag()}}.
|
|
// .
|
|
// Remember when using tagged operations with that the operations don't happen in hierarchical order, since
|
|
// the point of tags is to break the hierarchy. If you tag an object with a keep tag, nothing will be
|
|
// subtracted from it, no matter where it appears because kept objects are unioned in at the end.
|
|
// If you want a child of an object tagged with a remove tag to stay in the model it may be
|
|
// better to give it a tag that is not a remove tag or a keep tag. Such an object *will* be subject to
|
|
// subtractions from other remove-tagged objects.
|
|
// .
|
|
// Note that `diff()` invokes its children three times.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// remove = String containing space delimited set of tag names of children to difference away. Default: `"remove"`
|
|
// keep = String containing space delimited set of tag names of children to keep; that is, to union into the model after differencing is completed. Default: `"keep"`
|
|
// Example: Diffing using default tags
|
|
// diff()
|
|
// cuboid(50) {
|
|
// tag("remove") attach(TOP) sphere(d=40);
|
|
// tag("keep") attach(CTR) cylinder(h=40, d=10);
|
|
// }
|
|
// Example: The "hole" items are subtracted from everything else. The other tags can be anything you find convenient.
|
|
// diff("hole")
|
|
// tag("body")sphere(d=100) {
|
|
// tag("pole") zcyl(d=55, h=100); // attach() not needed for center-to-center.
|
|
// tag("hole") {
|
|
// xcyl(d=55, h=101);
|
|
// ycyl(d=55, h=101);
|
|
// }
|
|
// tag("axle")zcyl(d=15, h=140);
|
|
// }
|
|
// Example:
|
|
// diff(keep="axle")
|
|
// sphere(d=100) {
|
|
// tag("axle")xcyl(d=40, l=120);
|
|
// tag("remove")cuboid([40,120,100]);
|
|
// }
|
|
// Example: Masking
|
|
// diff()
|
|
// cube([80,90,100], center=true) {
|
|
// edge_mask(FWD)
|
|
// rounding_edge_mask(l=max($parent_size)*1.01, r=25);
|
|
// }
|
|
// Example: Here we subtract the parent object from the child. Because tags propagate to children we need to clear the "remove" tag from the child.
|
|
// diff()
|
|
// tag("remove")cuboid(10)
|
|
// tag("")position(RIGHT+BACK)cyl(r=8,h=9);
|
|
// Example(3D,VPR=[104,0,200], VPT=[-0.9,3.03, -0.74], VPD=19,NoAxes,NoScales): A pipe module that subtracts its interior when you call it using diff(). Normally if you union two pipes together, you'll get interfering walls at the intersection, but not here:
|
|
// $fn=16;
|
|
// // This module must be called by subtracting with "diff"
|
|
// module pipe(length, od, id) {
|
|
// // Strip the tag the user is using to subtract
|
|
// tag("")cylinder(h=length, d=od, center=true);
|
|
// // Leave the tag alone here, so this one is removed
|
|
// cylinder(h=length+.02, d=id, center=true);
|
|
// }
|
|
// // Draw some intersecting pipes
|
|
// diff(){
|
|
// tag("remove"){
|
|
// pipe(length=5, od=2, id=1.9);
|
|
// zrot(10)xrot(75)
|
|
// pipe(length=5, od=2, id=1.9);
|
|
// }
|
|
// // The orange bar has its center removed
|
|
// color("orange") down(1) xcyl(h=8, d=1);
|
|
// // "keep" preserves the interior of the blue bar intact
|
|
// tag("keep") recolor("blue") up(1) xcyl(h=8, d=1);
|
|
// }
|
|
// // Objects outside the diff don't have pipe interiors removed
|
|
// color("purple") down(2.2) ycyl(h=8, d=0.3);
|
|
// Example(3D,NoScales,NoAxes): Nested diff() calls work as expected, but be careful of reusing tag names, even hidden in submodules.
|
|
// $fn=32;
|
|
// diff("rem1")
|
|
// cyl(r=10,h=10){
|
|
// diff("rem2",$tag="rem1"){
|
|
// cyl(r=8,h=11);
|
|
// tag("rem2")diff("rem3"){
|
|
// cyl(r=6,h=12);
|
|
// tag("rem3")cyl(r=4,h=13);
|
|
// }
|
|
// }
|
|
// }
|
|
// Example: This example shows deep nesting, where all the differences cross levels. Unlike the preceding example, each cylinder is positioned relative to its parent. Note that it suffices to use two remove tags, alternating between them at each level.
|
|
// $fn=32;
|
|
// diff("remA")
|
|
// cyl(r=9, h=6)
|
|
// tag("remA")diff("remB")
|
|
// left(.2)position(RIGHT)cyl(r=8,h=7,anchor=RIGHT)
|
|
// tag("remB")diff("remA")
|
|
// left(.2)position(LEFT)cyl(r=7,h=7,anchor=LEFT)
|
|
// tag("remA")diff("remB")
|
|
// left(.2)position(LEFT)cyl(r=6,h=8,anchor=LEFT)
|
|
// tag("remB")diff("remA")
|
|
// right(.2)position(RIGHT)cyl(r=5,h=9,anchor=RIGHT)
|
|
// tag("remA")diff("remB")
|
|
// right(.2)position(RIGHT)cyl(r=4,h=10,anchor=RIGHT)
|
|
// tag("remB")left(.2)position(LEFT)cyl(r=3,h=11,anchor=LEFT);
|
|
// Example(3D,NoAxes,NoScales): When working with Non-Attachables like rotate_extrude() you must apply {{force_tag()}} to every non-attachable object.
|
|
// back_half()
|
|
// diff("remove")
|
|
// cuboid(40) {
|
|
// attach(TOP)
|
|
// recolor("lightgreen")
|
|
// cyl(l=10,d=30);
|
|
// position(TOP+RIGHT)
|
|
// force_tag("remove")
|
|
// xrot(90)
|
|
// rotate_extrude()
|
|
// right(20)
|
|
// circle(5);
|
|
// }
|
|
// Example: Here is another example where two children are intersected using the native intersection operator, and then tagged with {{force_tag()}}. Note that because the children are at the same level, you don't need to use a tagged operator for their intersection.
|
|
// $fn=32;
|
|
// diff()
|
|
// cuboid(10){
|
|
// force_tag("remove")intersection()
|
|
// {
|
|
// position(RIGHT) cyl(r=7,h=15);
|
|
// position(LEFT) cyl(r=7,h=15);
|
|
// }
|
|
// tag("keep")cyl(r=1,h=9);
|
|
// }
|
|
// Example: In this example the children that are subtracted are each at different nesting levels, with a kept object in between.
|
|
// $fn=32;
|
|
// diff()
|
|
// cuboid(10){
|
|
// tag("remove")cyl(r=4,h=11)
|
|
// tag("keep")cyl(r=3,h=17)
|
|
// tag("remove")position(RIGHT)cyl(r=2,h=18);
|
|
// }
|
|
// Example: Combining tag operators can be tricky. Here the `diff()` operation keeps two tags, "fullkeep" and "keep". Then {{intersect()}} intersects the "keep" tagged item with everything else, but keeps the "fullkeep" object.
|
|
// $fn=32;
|
|
// intersect("keep","fullkeep")
|
|
// diff(keep="fullkeep keep")
|
|
// cuboid(10){
|
|
// tag("remove")cyl(r=4,h=11);
|
|
// tag("keep") position(RIGHT)cyl(r=8,h=12);
|
|
// tag("fullkeep")cyl(r=1,h=12);
|
|
// }
|
|
// Example: In this complex example we form an intersection, subtract an object, and keep some objects. Note that for the small cylinders on either side, marking them as "keep" or removing their tag gives the same effect. This is because without a tag they become part of the intersection and the result ends up the same. For the two cylinders at the back, however, the result is different. With "keep" the cylinder on the left appears whole, but without it, the cylinder at the back right is subject to intersection.
|
|
// $fn=64;
|
|
// diff()
|
|
// intersect(keep="remove keep")
|
|
// cuboid(10,$thing="cube"){
|
|
// tag("intersect"){
|
|
// position(RIGHT) cyl(r=5.5,h=15)
|
|
// tag("")cyl(r=2,h=10);
|
|
// position(LEFT) cyl(r=5.54,h=15)
|
|
// tag("keep")cyl(r=2,h=10);
|
|
// }
|
|
// // Untagged it is in the intersection
|
|
// tag("") position(BACK+RIGHT)
|
|
// cyl(r=2,h=10,anchor=CTR);
|
|
// // With keep the full cylinder appears
|
|
// tag("keep") position(BACK+LEFT)
|
|
// cyl(r=2,h=10,anchor=CTR);
|
|
// tag("remove") cyl(r=3,h=15);
|
|
// }
|
|
module diff(remove="remove", keep="keep")
|
|
{
|
|
req_children($children);
|
|
assert(is_string(remove),"remove must be a string of tags");
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
if (_is_shown())
|
|
{
|
|
difference() {
|
|
hide(str(remove," ",keep)) children();
|
|
show_only(remove) children();
|
|
}
|
|
}
|
|
show_int(keep)children();
|
|
}
|
|
|
|
|
|
// Module: tag_diff()
|
|
// Synopsis: Performs a {{diff()}} and then sets a tag on the result.
|
|
// Topics: Attachments
|
|
// See Also: tag(), force_tag(), recolor(), show_only(), hide(), diff(), intersect(), tag_intersect()
|
|
// Usage:
|
|
// tag_diff(tag, [remove], [keep]) PARENT() CHILDREN;
|
|
// Description:
|
|
// Perform a differencing operation in the manner of {{diff()}} using tags to control what happens,
|
|
// and then tag the resulting difference object with the specified tag. This forces the specified
|
|
// tag to be resolved at the level of the difference operation. In most cases, this is not necessary,
|
|
// but if you have kept objects and want to operate on this difference object as a whole object using
|
|
// more tag operations, you will probably not get the results you want if you simply use {{tag()}}.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// tag = Tag string to apply to this difference object
|
|
// remove = String containing space delimited set of tag names of children to difference away. Default: `"remove"`
|
|
// keep = String containing space delimited set of tag names of children to keep; that is, to union into the model after differencing is completed. Default: `"keep"`
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example: In this example we have a difference with a kept object that is then subtracted from a cube, but we don't want the kept object to appear in the final output, so this result is wrong:
|
|
// diff("rem"){
|
|
// cuboid([20,10,30],anchor=FRONT);
|
|
// tag("rem")diff("remove","keep"){
|
|
// cuboid([10,10,20]);
|
|
// tag("remove")cuboid([11,11,5]);
|
|
// tag("keep")cuboid([2,2,20]);
|
|
// }
|
|
// }
|
|
// Example: Using tag_diff corrects the problem:
|
|
// diff("rem"){
|
|
// cuboid([20,10,30],anchor=FRONT);
|
|
// tag_diff("rem","remove","keep"){
|
|
// cuboid([10,10,20]);
|
|
// tag("remove")cuboid([11,11,5]);
|
|
// tag("keep")cuboid([2,2,20]);
|
|
// }
|
|
// }
|
|
// Example: This concentric cylinder example uses "keep" and produces the wrong result. The kept cylinder gets kept in the final output instead of subtracted. This happens even when we make sure to change the `keep` argument at the top level {{diff()}} call.
|
|
// diff("rem","nothing")
|
|
// cyl(r=8,h=6)
|
|
// tag("rem")diff()
|
|
// cyl(r=7,h=7)
|
|
// tag("remove")cyl(r=6,h=8)
|
|
// tag("keep")cyl(r=5,h=9);
|
|
// Example: Changing to tag_diff() causes the kept cylinder to be subtracted, producing the desired result:
|
|
// diff("rem")
|
|
// cyl(r=8,h=6)
|
|
// tag_diff("rem")
|
|
// cyl(r=7,h=7)
|
|
// tag("remove")cyl(r=6,h=8)
|
|
// tag("keep")cyl(r=5,h=9);
|
|
module tag_diff(tag,remove="remove", keep="keep")
|
|
{
|
|
req_children($children);
|
|
assert(is_string(remove),"remove must be a string of tags");
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
assert(is_string(tag),"tag must be a string");
|
|
assert(undef==str_find(tag," "),str("Tag string \"",tag,"\" contains a space, which is not allowed"));
|
|
$tag=str($tag_prefix,tag);
|
|
if (_is_shown())
|
|
show_all(){
|
|
difference() {
|
|
hide(str(remove," ",keep)) children();
|
|
show_only(remove) children();
|
|
}
|
|
show_only(keep)children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: intersect()
|
|
// Synopsis: Perform an intersection operation on children using tags rather than hierarchy to control what happens.
|
|
// Topics: Attachments
|
|
// See Also: tag(), force_tag(), recolor(), show_only(), hide(), diff(), tag_diff(), tag_intersect()
|
|
// Usage:
|
|
// intersect([intersect], [keep]) PARENT() CHILDREN;
|
|
// Description:
|
|
// Performs an intersection operation on its children, using tags to
|
|
// determine what happens. This is specifically intended to address
|
|
// the situation where you want intersections involving a parent and
|
|
// child object, something that is impossible with the native
|
|
// intersection() module. This module treats the children in three
|
|
// groups: objects matching the tags listed in `intersect`, objects
|
|
// matching tags listed in `keep`, and the remaining objects that
|
|
// don't match any of the listed tags. The intersection is computed
|
|
// between the union of the `intersect` tagged objects and union of the objects that don't
|
|
// match any of the listed tags. Finally the objects listed in `keep` are
|
|
// unioned with the result. Attachable objects should be tagged using {{tag()}}
|
|
// and non-attachable objects with {{force_tag()}}.
|
|
// .
|
|
// Note that `intersect()` invokes its children three times.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// intersect = String containing space delimited set of tag names of children to intersect. Default: "intersect"
|
|
// keep = String containing space delimited set of tag names of children to keep whole. Default: "keep"
|
|
// Example:
|
|
// intersect("mask", keep="axle")
|
|
// sphere(d=100) {
|
|
// tag("mask")cuboid([40,100,100]);
|
|
// tag("axle")xcyl(d=40, l=100);
|
|
// }
|
|
// Example: Combining tag operators can be tricky. Here the {{diff()}} operation keeps two tags, "fullkeep" and "keep". Then `intersect()` intersects the "keep" tagged item with everything else, but keeps the "fullkeep" object.
|
|
// $fn=32;
|
|
// intersect("keep","fullkeep")
|
|
// diff(keep="fullkeep keep")
|
|
// cuboid(10){
|
|
// tag("remove")cyl(r=4,h=11);
|
|
// tag("keep") position(RIGHT)cyl(r=8,h=12);
|
|
// tag("fullkeep")cyl(r=1,h=12);
|
|
// }
|
|
// Example: In this complex example we form an intersection, subtract an object, and keep some objects. Note that for the small cylinders on either side, marking them as "keep" or removing their tag gives the same effect. This is because without a tag they become part of the intersection and the result ends up the same. For the two cylinders at the back, however, the result is different. With "keep" the cylinder on the left appears whole, but without it, the cylinder at the back right is subject to intersection.
|
|
// $fn=64;
|
|
// diff()
|
|
// intersect(keep="remove keep")
|
|
// cuboid(10,$thing="cube"){
|
|
// tag("intersect"){
|
|
// position(RIGHT) cyl(r=5.5,h=15)
|
|
// tag("")cyl(r=2,h=10);
|
|
// position(LEFT) cyl(r=5.54,h=15)
|
|
// tag("keep")cyl(r=2,h=10);
|
|
// }
|
|
// // Untagged it is in the intersection
|
|
// tag("") position(BACK+RIGHT)
|
|
// cyl(r=2,h=10,anchor=CTR);
|
|
// // With keep the full cylinder appears
|
|
// tag("keep") position(BACK+LEFT)
|
|
// cyl(r=2,h=10,anchor=CTR);
|
|
// tag("remove") cyl(r=3,h=15);
|
|
// }
|
|
module intersect(intersect="intersect",keep="keep")
|
|
{
|
|
assert(is_string(intersect),"intersect must be a string of tags");
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
intersection(){
|
|
show_only(intersect) children();
|
|
hide(str(intersect," ",keep)) children();
|
|
}
|
|
show_int(keep) children();
|
|
}
|
|
|
|
|
|
// Module: tag_intersect()
|
|
// Synopsis: Performs an {{intersect()}} and then tags the result.
|
|
// Topics: Attachments
|
|
// See Also: tag(), force_tag(), recolor(), show_only(), hide(), diff(), tag_diff(), intersect()
|
|
// Usage:
|
|
// tag_intersect(tag, [intersect], [keep]) PARENT() CHILDREN;
|
|
// Description:
|
|
// Perform an intersection operation in the manner of {{intersect()}} using tags to control what happens,
|
|
// and then tag the resulting difference object with the specified tag. This forces the specified
|
|
// tag to be resolved at the level of the intersect operation. In most cases, this is not necessary,
|
|
// but if you have kept objects and want to operate on this difference object as a whole object using
|
|
// more tag operations, you will probably not get the results you want if you simply use {{tag()}}.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// tag = Tag to set for the intersection
|
|
// intersect = String containing space delimited set of tag names of children to intersect. Default: "intersect"
|
|
// keep = String containing space delimited set of tag names of children to keep whole. Default: "keep"
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example: Without `tag_intersect()` the kept object is not included in the difference.
|
|
// $fn=32;
|
|
// diff()
|
|
// cuboid([20,15,9])
|
|
// tag("remove")intersect()
|
|
// cuboid(10){
|
|
// tag("intersect")position(RIGHT) cyl(r=7,h=10);
|
|
// tag("keep")position(LEFT)cyl(r=4,h=10);
|
|
// }
|
|
// Example: Using tag_intersect corrects the problem.
|
|
// $fn=32;
|
|
// diff()
|
|
// cuboid([20,15,9])
|
|
// tag_intersect("remove")
|
|
// cuboid(10){
|
|
// tag("intersect")position(RIGHT) cyl(r=7,h=10);
|
|
// tag("keep")position(LEFT)cyl(r=4,h=10);
|
|
// }
|
|
module tag_intersect(tag,intersect="intersect",keep="keep")
|
|
{
|
|
assert(is_string(intersect),"intersect must be a string of tags");
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
assert(is_string(tag),"tag must be a string");
|
|
assert(undef==str_find(tag," "),str("Tag string \"",tag,"\" contains a space, which is not allowed"));
|
|
$tag=str($tag_prefix,tag);
|
|
if (_is_shown())
|
|
show_all(){
|
|
intersection(){
|
|
show_only(intersect) children();
|
|
hide(str(intersect," ",keep)) children();
|
|
}
|
|
show_only(keep) children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: conv_hull()
|
|
// Synopsis: Performs a hull operation on the children using tags to determine what happens.
|
|
// Topics: Attachments, Hulling
|
|
// See Also: tag(), recolor(), show_only(), hide(), diff(), intersect(), hull()
|
|
// Usage:
|
|
// conv_hull([keep]) CHILDREN;
|
|
// Description:
|
|
// Performs a hull operation on the children using tags to determine what happens. The items
|
|
// not tagged with the `keep` tags are combined into a convex hull, and the children tagged with the keep tags
|
|
// are unioned with the result.
|
|
// .
|
|
// Note that `conv_hull()` invokes its children twice.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// keep = String containing space delimited set of tag names of children to keep out of the hull. Default: "keep"
|
|
// Example:
|
|
// conv_hull("keep")
|
|
// sphere(d=100, $fn=64) {
|
|
// cuboid([40,90,90]);
|
|
// tag("keep")xcyl(d=40, l=120);
|
|
// }
|
|
// Example: difference combined with hull where all objects are relative to each other.
|
|
// $fn=32;
|
|
// diff()
|
|
// conv_hull("remove")
|
|
// cuboid(10)
|
|
// position(RIGHT+BACK)cyl(r=4,h=10)
|
|
// tag("remove")cyl(r=2,h=12);
|
|
module conv_hull(keep="keep")
|
|
{
|
|
req_children($children);
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
if (_is_shown())
|
|
hull() hide(keep) children();
|
|
show_int(keep) children();
|
|
}
|
|
|
|
|
|
// Module: tag_conv_hull()
|
|
// Synopsis: Performs a {{conv_hull()}} and then sets a tag on the result.
|
|
// Topics: Attachments
|
|
// See Also: tag(), recolor(), show_only(), hide(), diff(), intersect()
|
|
// Usage:
|
|
// tag_conv_hull(tag, [keep]) CHILDREN;
|
|
// Description:
|
|
// Perform a convex hull operation in the manner of {{conv_hull()}} using tags to control what happens,
|
|
// and then tag the resulting hull object with the specified tag. This forces the specified
|
|
// tag to be resolved at the level of the hull operation. In most cases, this is not necessary,
|
|
// but if you have kept objects and want to operate on the hull object as a whole object using
|
|
// more tag operations, you will probably not get the results you want if you simply use {{tag()}}.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// keep = String containing space delimited set of tag names of children to keep out of the hull. Default: "keep"
|
|
// Side Effects:
|
|
// Sets `$tag` to the tag you specify, possibly with a scope prefix.
|
|
// Example: With a regular tag, the kept object is not handled as desired:
|
|
// diff(){
|
|
// cuboid([30,30,9])
|
|
// tag("remove")conv_hull("remove")
|
|
// cuboid(10,anchor=LEFT+FRONT){
|
|
// position(RIGHT+BACK)cyl(r=4,h=10);
|
|
// tag("keep")position(FRONT+LEFT)cyl(r=4,h=10);
|
|
// }
|
|
// }
|
|
// Example: Using `tag_conv_hull()` fixes the problem:
|
|
// diff(){
|
|
// cuboid([30,30,9])
|
|
// tag_conv_hull("remove")
|
|
// cuboid(10,anchor=LEFT+FRONT){
|
|
// position(RIGHT+BACK)cyl(r=4,h=10);
|
|
// tag("keep")position(FRONT+LEFT)cyl(r=4,h=10);
|
|
// }
|
|
// }
|
|
module tag_conv_hull(tag,keep="keep")
|
|
{
|
|
req_children($children);
|
|
assert(is_string(keep),"keep must be a string of tags");
|
|
assert(is_string(tag),"tag must be a string");
|
|
assert(undef==str_find(tag," "),str("Tag string \"",tag,"\" contains a space, which is not allowed"));
|
|
$tag=str($tag_prefix,tag);
|
|
if (_is_shown())
|
|
show_all(){
|
|
hull() hide(keep) children();
|
|
show_only(keep) children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: hide()
|
|
// Synopsis: Hides attachable children with the given tags.
|
|
// Topics: Attachments
|
|
// See Also: tag(), recolor(), show_only(), show_all(), show_int(), diff(), intersect()
|
|
// Usage:
|
|
// hide(tags) CHILDREN;
|
|
// Description:
|
|
// Hides all attachable children with the given tags, which you supply as a space separated string. Previously hidden objects remain hidden, so hiding is cumulative, unlike `show_only()`.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Side Effects:
|
|
// Sets `$tags_hidden` to include the tags you specify.
|
|
// Example: Hides part of the model.
|
|
// hide("A")
|
|
// tag("main") cube(50, anchor=CENTER, $tag="Main") {
|
|
// tag("A")attach(LEFT, BOTTOM) cylinder(d=30, h=30);
|
|
// tag("B")attach(RIGHT, BOTTOM) cylinder(d=30, h=30);
|
|
// }
|
|
// Example: Use an invisible parent to position children. Note that children must be retagged because they inherit the parent tag.
|
|
// $fn=16;
|
|
// hide("hidden")
|
|
// tag("hidden")cuboid(10)
|
|
// tag("visible") {
|
|
// position(RIGHT) cyl(r=1,h=12);
|
|
// position(LEFT) cyl(r=1,h=12);
|
|
// }
|
|
module hide(tags)
|
|
{
|
|
req_children($children);
|
|
dummy=assert(is_string(tags), "tags must be a string");
|
|
taglist = [for(s=str_split(tags," ",keep_nulls=false)) str($tag_prefix,s)];
|
|
$tags_hidden = concat($tags_hidden,taglist);
|
|
children();
|
|
}
|
|
|
|
|
|
// Module: show_only()
|
|
// Synopsis: Show only the children with the listed tags.
|
|
// See Also: tag(), recolor(), show_all(), show_int(), diff(), intersect()
|
|
// Topics: Attachments
|
|
// Usage:
|
|
// show_only(tags) CHILDREN;
|
|
// Description:
|
|
// Show only the children with the listed tags, which you sply as a space separated string. Only unhidden objects will be shown, so if an object is hidden either before or after the `show_only()` call then it will remain hidden. This overrides any previous `show_only()` calls. Unlike `hide()`, calls to `show_only()` are not cumulative.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Side Effects:
|
|
// Sets `$tags_shown` to the tag you specify.
|
|
// Example: Display the attachments but not the parent
|
|
// show_only("visible")
|
|
// cube(50, anchor=CENTER)
|
|
// tag("visible"){
|
|
// attach(LEFT, BOTTOM) cylinder(d=30, h=30);
|
|
// attach(RIGHT, BOTTOM) cylinder(d=30, h=30);
|
|
// }
|
|
module show_only(tags)
|
|
{
|
|
req_children($children);
|
|
dummy=assert(is_string(tags), str("tags must be a string",tags));
|
|
taglist = [for(s=str_split(tags," ",keep_nulls=false)) str($tag_prefix,s)];
|
|
$tags_shown = taglist;
|
|
children();
|
|
}
|
|
|
|
// Module: show_all()
|
|
// Synopsis: Shows all children and clears tags.
|
|
// See Also: tag(), recolor(), show_only(), show_int(), diff(), intersect()
|
|
// Topics: Attachments
|
|
// Usage;
|
|
// show_all() CHILDREN;
|
|
// Description:
|
|
// Shows all children. Clears the list of hidden tags and shown tags so that all child objects will be
|
|
// fully displayed.
|
|
// Side Effects:
|
|
// Sets `$tags_shown="ALL"`
|
|
// Sets `$tags_hidden=[]`
|
|
module show_all()
|
|
{
|
|
req_children($children);
|
|
$tags_shown="ALL";
|
|
$tags_hidden=[];
|
|
children();
|
|
}
|
|
|
|
|
|
// Module: show_int()
|
|
// Synopsis: Shows children with the listed tags which were already shown in the parent context.
|
|
// See Also: tag(), recolor(), show_only(), show_all(), show_int(), diff(), intersect()
|
|
// Topics: Attachments
|
|
// Usage:
|
|
// show_int(tags) CHILDREN;
|
|
// Description:
|
|
// Show only the children with the listed tags which were already shown in the parent context.
|
|
// This intersects the current show list with the list of tags you provide.
|
|
// Arguments:
|
|
// tags = list of tags to show
|
|
// Side Effects:
|
|
// Sets `$tags_shown`
|
|
module show_int(tags)
|
|
{
|
|
req_children($children);
|
|
dummy=assert(is_string(tags), str("tags must be a string",tags));
|
|
taglist = [for(s=str_split(tags," ",keep_nulls=false)) str($tag_prefix,s)];
|
|
$tags_shown = $tags_shown == "ALL" ? taglist : set_intersection($tags_shown,taglist);
|
|
children();
|
|
}
|
|
|
|
|
|
// Section: Mask Attachment
|
|
|
|
|
|
// Module: face_mask()
|
|
// Synopsis: Ataches a 3d mask shape to the given faces of the parent.
|
|
// SynTags: Trans
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), edge_mask(), corner_mask(), face_profile(), edge_profile(), corner_profile()
|
|
// Usage:
|
|
// PARENT() face_mask(faces) CHILDREN;
|
|
// Description:
|
|
// Takes a 3D mask shape, and attaches it to the given faces, with the appropriate orientation to be
|
|
// differenced away. The mask shape should be vertically oriented (Z-aligned) with the bottom half
|
|
// (Z-) shaped to be diffed away from the face of parent attachable shape. If no tag is set then
|
|
// `face_mask()` sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// For details on specifying the faces to mask see [Specifying Faces](attachments.scad#subsection-specifying-faces).
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// edges = Faces to mask. See [Specifying Faces](attachments.scad#subsection-specifying-faces) for information on specifying faces. Default: All faces
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each face in the list of faces given.
|
|
// `$attach_anchor` is set for each face given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// Example:
|
|
// diff()
|
|
// cylinder(r=30, h=60)
|
|
// face_mask(TOP) {
|
|
// rounding_cylinder_mask(r=30,rounding=5);
|
|
// cuboid([5,61,10]);
|
|
// }
|
|
// Example: Using `$idx`
|
|
// diff()
|
|
// cylinder(r=30, h=60)
|
|
// face_mask([TOP, BOT])
|
|
// zrot(45*$idx) zrot_copies([0,90]) cuboid([5,61,10]);
|
|
module face_mask(faces=[LEFT,RIGHT,FRONT,BACK,BOT,TOP]) {
|
|
req_children($children);
|
|
faces = is_vector(faces)? [faces] : faces;
|
|
assert(all([for (face=faces) is_vector(face) && sum([for (x=face) x!=0? 1 : 0])==1]), "Vector in faces doesn't point at a face.");
|
|
assert($parent_geom != undef, "No object to attach to!");
|
|
attach(faces) {
|
|
default_tag("remove") children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: edge_mask()
|
|
// Synopsis: Attaches a 3D mask shape to the given edges of the parent.
|
|
// SynTags: Trans
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), face_mask(), corner_mask(), face_profile(), edge_profile(), corner_profile()
|
|
// Usage:
|
|
// PARENT() edge_mask([edges], [except]) CHILDREN;
|
|
// Description:
|
|
// Takes a 3D mask shape, and attaches it to the given edges, with the appropriate orientation to be
|
|
// differenced away. The mask shape should be vertically oriented (Z-aligned) with the back-right
|
|
// quadrant (X+Y+) shaped to be diffed away from the edge of parent attachable shape. If no tag is set
|
|
// then `edge_mask` sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// For details on specifying the edges to mask see [Specifying Edges](attachments.scad#subsection-specifying-edges).
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Figure: A Typical Edge Rounding Mask
|
|
// module roundit(l,r) difference() {
|
|
// translate([-1,-1,-l/2])
|
|
// cube([r+1,r+1,l]);
|
|
// translate([r,r])
|
|
// cylinder(h=l+1,r=r,center=true, $fn=quantup(segs(r),4));
|
|
// }
|
|
// roundit(l=30,r=10);
|
|
// Arguments:
|
|
// edges = Edges to mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: All edges.
|
|
// except = Edges to explicitly NOT mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: No edges.
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each edge.
|
|
// `$attach_anchor` is set for each edge given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$parent_size` is set to the size of the parent object.
|
|
// Example:
|
|
// diff()
|
|
// cube([50,60,70],center=true)
|
|
// edge_mask([TOP,"Z"],except=[BACK,TOP+LEFT])
|
|
// rounding_edge_mask(l=71,r=10);
|
|
module edge_mask(edges=EDGES_ALL, except=[]) {
|
|
req_children($children);
|
|
assert($parent_geom != undef, "No object to attach to!");
|
|
edges = _edges(edges, except=except);
|
|
vecs = [
|
|
for (i = [0:3], axis=[0:2])
|
|
if (edges[axis][i]>0)
|
|
EDGE_OFFSETS[axis][i]
|
|
];
|
|
for ($idx = idx(vecs)) {
|
|
vec = vecs[$idx];
|
|
vcount = (vec.x?1:0) + (vec.y?1:0) + (vec.z?1:0);
|
|
dummy=assert(vcount == 2, "Not an edge vector!");
|
|
anch = _find_anchor(vec, $parent_geom);
|
|
$attach_to = undef;
|
|
$attach_anchor = anch;
|
|
$attach_norot = true;
|
|
rotang =
|
|
vec.z<0? [90,0,180+v_theta(vec)] :
|
|
vec.z==0 && sign(vec.x)==sign(vec.y)? 135+v_theta(vec) :
|
|
vec.z==0 && sign(vec.x)!=sign(vec.y)? [0,180,45+v_theta(vec)] :
|
|
[-90,0,180+v_theta(vec)];
|
|
translate(anch[1]) rot(rotang)
|
|
default_tag("remove") children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: corner_mask()
|
|
// Synopsis: Attaches a 3d mask shape to the given corners of the parent.
|
|
// SynTags: Trans
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), face_mask(), edge_mask(), face_profile(), edge_profile(), corner_profile()
|
|
// Usage:
|
|
// PARENT() corner_mask([corners], [except]) CHILDREN;
|
|
// Description:
|
|
// Takes a 3D mask shape, and attaches it to the specified corners, with the appropriate orientation to
|
|
// be differenced away. The 3D corner mask shape should be designed to mask away the X+Y+Z+ octant. If no tag is set
|
|
// then `corner_mask` sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// See [Specifying Corners](attachments.scad#subsection-specifying-corners) for information on how to specify corner sets.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// corners = Corners to mask. See [Specifying Corners](attachments.scad#subsection-specifying-corners). Default: All corners.
|
|
// except = Corners to explicitly NOT mask. See [Specifying Corners](attachments.scad#subsection-specifying-corners). Default: No corners.
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each corner.
|
|
// `$attach_anchor` is set for each corner given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// Example:
|
|
// diff()
|
|
// cube(100, center=true)
|
|
// corner_mask([TOP,FRONT],LEFT+FRONT+TOP)
|
|
// difference() {
|
|
// translate(-0.01*[1,1,1]) cube(20);
|
|
// translate([20,20,20]) sphere(r=20);
|
|
// }
|
|
module corner_mask(corners=CORNERS_ALL, except=[]) {
|
|
req_children($children);
|
|
assert($parent_geom != undef, "No object to attach to!");
|
|
corners = _corners(corners, except=except);
|
|
vecs = [for (i = [0:7]) if (corners[i]>0) CORNER_OFFSETS[i]];
|
|
for ($idx = idx(vecs)) {
|
|
vec = vecs[$idx];
|
|
vcount = (vec.x?1:0) + (vec.y?1:0) + (vec.z?1:0);
|
|
dummy=assert(vcount == 3, "Not an edge vector!");
|
|
anch = _find_anchor(vec, $parent_geom);
|
|
$attach_to = undef;
|
|
$attach_anchor = anch;
|
|
$attach_norot = true;
|
|
rotang = vec.z<0?
|
|
[ 0,0,180+v_theta(vec)-45] :
|
|
[180,0,-90+v_theta(vec)-45];
|
|
translate(anch[1]) rot(rotang)
|
|
default_tag("remove") children();
|
|
}
|
|
}
|
|
|
|
|
|
// Module: face_profile()
|
|
// Synopsis: Extrudes a 2D edge profile into a mask for all edges and corners of the given faces on the parent.
|
|
// SynTags: Geom
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), edge_profile(), corner_profile(), face_mask(), edge_mask(), corner_mask()
|
|
// Usage:
|
|
// PARENT() face_profile(faces, r|d=, [convexity=]) CHILDREN;
|
|
// Description:
|
|
// Given a 2D edge profile, extrudes it into a mask for all edges and corners bounding each given face. If no tag is set
|
|
// then `face_profile` sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// See [Specifying Faces](attachments.scad#subsection-specifying-faces) for information on specifying faces.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// faces = Faces to mask edges and corners of.
|
|
// r = Radius of corner mask.
|
|
// ---
|
|
// d = Diameter of corner mask.
|
|
// excess = Excess length to extrude the profile to make edge masks. Default: 0.01
|
|
// convexity = Max number of times a line could intersect the perimeter of the mask shape. Default: 10
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each face.
|
|
// `$attach_anchor` is set for each edge or corner given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$profile_type` is set to `"edge"` or `"corner"`, depending on what is being masked.
|
|
// Example:
|
|
// diff()
|
|
// cube([50,60,70],center=true)
|
|
// face_profile(TOP,r=10)
|
|
// mask2d_roundover(r=10);
|
|
module face_profile(faces=[], r, d, excess=0.01, convexity=10) {
|
|
req_children($children);
|
|
faces = is_vector(faces)? [faces] : faces;
|
|
assert(all([for (face=faces) is_vector(face) && sum([for (x=face) x!=0? 1 : 0])==1]), "Vector in faces doesn't point at a face.");
|
|
r = get_radius(r=r, d=d, dflt=undef);
|
|
assert(is_num(r) && r>=0);
|
|
edge_profile(faces, excess=excess) children();
|
|
corner_profile(faces, convexity=convexity, r=r) children();
|
|
}
|
|
|
|
|
|
// Module: edge_profile()
|
|
// Synopsis: Extrudes a 2d edge profile into a mask on the given edges of the parent.
|
|
// SynTags: Geom
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), face_profile(), edge_profile_asym(), corner_profile(), edge_mask(), face_mask(), corner_mask()
|
|
// Usage:
|
|
// PARENT() edge_profile([edges], [except], [convexity]) CHILDREN;
|
|
// Description:
|
|
// Takes a 2D mask shape and attaches it to the selected edges, with the appropriate orientation and
|
|
// extruded length to be `diff()`ed away, to give the edge a matching profile. If no tag is set
|
|
// then `edge_profile` sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// For details on specifying the edges to mask see [Specifying Edges](attachments.scad#subsection-specifying-edges).
|
|
// For a step-by-step
|
|
// explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// edges = Edges to mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: All edges.
|
|
// except = Edges to explicitly NOT mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: No edges.
|
|
// excess = Excess length to extrude the profile to make edge masks. Default: 0.01
|
|
// convexity = Max number of times a line could intersect the perimeter of the mask shape. Default: 10
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each edge.
|
|
// `$attach_anchor` is set for each edge given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$profile_type` is set to `"edge"`.
|
|
// `$edge_angle` is set to the inner angle of the current edge.
|
|
// Example:
|
|
// diff()
|
|
// cube([50,60,70],center=true)
|
|
// edge_profile([TOP,"Z"],except=[BACK,TOP+LEFT])
|
|
// mask2d_roundover(r=10, inset=2);
|
|
// Example: Using $edge_angle on a Conoid
|
|
// diff()
|
|
// cyl(d1=50, d2=30, l=40, anchor=BOT) {
|
|
// edge_profile([TOP,BOT], excess=10, convexity=6) {
|
|
// mask2d_roundover(r=8, inset=1, excess=1, mask_angle=$edge_angle);
|
|
// }
|
|
// }
|
|
// Example: Using $edge_angle on a Prismoid
|
|
// diff()
|
|
// prismoid([60,50],[30,20],h=40,shift=[-25,15]) {
|
|
// edge_profile(excess=10, convexity=20) {
|
|
// mask2d_roundover(r=5,inset=1,mask_angle=$edge_angle);
|
|
// }
|
|
// }
|
|
|
|
module edge_profile(edges=EDGES_ALL, except=[], excess=0.01, convexity=10) {
|
|
req_children($children);
|
|
check1 = assert($parent_geom != undef, "No object to attach to!");
|
|
conoid = $parent_geom[0] == "conoid";
|
|
edges = !conoid? _edges(edges, except=except) :
|
|
edges==EDGES_ALL? [TOP,BOT] :
|
|
assert(all([for (e=edges) in_list(e,[TOP,BOT])]), "Invalid conoid edge spec.")
|
|
edges;
|
|
vecs = conoid
|
|
? [for (e=edges) e+FWD]
|
|
: [
|
|
for (i = [0:3], axis=[0:2])
|
|
if (edges[axis][i]>0)
|
|
EDGE_OFFSETS[axis][i]
|
|
];
|
|
all_vecs_are_edges = all([for (vec = vecs) sum(v_abs(vec))==2]);
|
|
check2 = assert(all_vecs_are_edges, "All vectors must be edges.");
|
|
default_tag("remove")
|
|
for ($idx = idx(vecs)) {
|
|
vec = vecs[$idx];
|
|
anch = _find_anchor(vec, $parent_geom);
|
|
path_angs_T = _attach_geom_edge_path($parent_geom, vec);
|
|
path = path_angs_T[0];
|
|
vecs = path_angs_T[1];
|
|
post_T = path_angs_T[2];
|
|
$attach_to = undef;
|
|
$attach_anchor = anch;
|
|
$attach_norot = true;
|
|
$profile_type = "edge";
|
|
multmatrix(post_T) {
|
|
for (i = idx(path,e=-2)) {
|
|
pt1 = select(path,i);
|
|
pt2 = select(path,i+1);
|
|
cp = (pt1 + pt2) / 2;
|
|
v1 = vecs[i][0];
|
|
v2 = vecs[i][1];
|
|
$edge_angle = 180 - vector_angle(v1,v2);
|
|
if (!approx(pt1,pt2)) {
|
|
seglen = norm(pt2-pt1) + 2 * excess;
|
|
move(cp) {
|
|
frame_map(x=-v2, z=unit(pt2-pt1)) {
|
|
linear_extrude(height=seglen, center=true, convexity=convexity)
|
|
mirror([-1,1]) children();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Module: edge_profile_asym()
|
|
// Synopsis: Extrudes an asymmetric 2D profile into a mask on the given edges and corners of the parent.
|
|
// SynTags: Geom
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), face_profile(), edge_profile(), corner_profile(), edge_mask(), face_mask(), corner_mask()
|
|
// Usage:
|
|
// PARENT() edge_profile([edges], [except=], [convexity=], [flip=], [corner_type=]) CHILDREN;
|
|
// Description:
|
|
// Takes an asymmetric 2D mask shape and attaches it to the selected edges and corners, with the appropriate
|
|
// orientation and extruded length to be `diff()`ed away, to give the edges and corners a matching profile.
|
|
// If no tag is set then `edge_profile_asym()` sets the tag for children to "remove" so that it will work
|
|
// with the default {{diff()}} tag. For details on specifying the edges to mask see [Specifying Edges](attachments.scad#subsection-specifying-edges).
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// .
|
|
// The asymmetric profiles are joined consistently at the corners. This is impossible if all three edges at a corner use the profile, hence
|
|
// this situation is not permitted. The profile orientation can be inverted using the `flip=true` parameter.
|
|
// .
|
|
// The standard profiles are located in the first quadrant and have positive X values. If you provide a profile located in the second quadrant,
|
|
// where the X values are negative, then it will produce a fillet. You can flip any of the standard profiles using {{xflip()}}.
|
|
// Fillets are always asymmetric because at a given edge, they can blend in two different directions, so even for symmetric profiles,
|
|
// the asymmetric logic is required. You can set the `corner_type` parameter to select rounded, chamfered or sharp corners.
|
|
// However, when the corners are inside (concave) corners, you must provide the size of the profile ([width,height]), because the
|
|
// this information is required to produce the correct corner and cannot be obtain from the profile itself, which is a child object.
|
|
// Arguments:
|
|
// edges = Edges to mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: All edges.
|
|
// except = Edges to explicitly NOT mask. See [Specifying Edges](attachments.scad#subsection-specifying-edges). Default: No edges.
|
|
// excess = Excess length to extrude the profile to make edge masks. Default: 0.01
|
|
// convexity = Max number of times a line could intersect the perimeter of the mask shape. Default: 10
|
|
// flip = If true, reverses the orientation of any external profile parts at each edge. Default false
|
|
// corner_type = Specifies how exterior corners should be formed. Must be one of `"none"`, `"chamfer"`, `"round"`, or `"sharp"`. Default: `"none"`
|
|
// size = If given the width and height of the 2D profile, will enable rounding and chamfering of internal corners when given a negative profile.
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each edge.
|
|
// `$attach_anchor` is set for each edge given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$profile_type` is set to `"edge"`.
|
|
// `$edge_angle` is set to the inner angle of the current edge.
|
|
// Example:
|
|
// ogee = [
|
|
// "xstep",1, "ystep",1, // Starting shoulder.
|
|
// "fillet",5, "round",5, // S-curve.
|
|
// "ystep",1, "xstep",1 // Ending shoulder.
|
|
// ];
|
|
// diff()
|
|
// cuboid(50) {
|
|
// edge_profile_asym(FRONT)
|
|
// mask2d_ogee(ogee);
|
|
// }
|
|
// Example: Flipped
|
|
// ogee = [
|
|
// "xstep",1, "ystep",1, // Starting shoulder.
|
|
// "fillet",5, "round",5, // S-curve.
|
|
// "ystep",1, "xstep",1 // Ending shoulder.
|
|
// ];
|
|
// diff()
|
|
// cuboid(50) {
|
|
// edge_profile_asym(FRONT, flip=true)
|
|
// mask2d_ogee(ogee);
|
|
// }
|
|
// Example: Negative Chamfering
|
|
// cuboid(50) {
|
|
// edge_profile_asym(FWD, flip=false)
|
|
// xflip() mask2d_chamfer(10);
|
|
// edge_profile_asym(BACK, flip=true, corner_type="sharp")
|
|
// xflip() mask2d_chamfer(10);
|
|
// }
|
|
// Example: Negative Roundings
|
|
// cuboid(50) {
|
|
// edge_profile_asym(FWD, flip=false)
|
|
// xflip() mask2d_roundover(10);
|
|
// edge_profile_asym(BACK, flip=true, corner_type="round")
|
|
// xflip() mask2d_roundover(10);
|
|
// }
|
|
// Example: Cornerless
|
|
// cuboid(50) {
|
|
// edge_profile_asym(
|
|
// "ALL", except=[TOP+FWD+RIGHT, BOT+BACK+LEFT]
|
|
// ) xflip() mask2d_roundover(10);
|
|
// }
|
|
// Example: More complicated edge sets
|
|
// cuboid(50) {
|
|
// edge_profile_asym(
|
|
// [FWD,BACK,BOT+RIGHT], except=[FWD+RIGHT,BOT+BACK],
|
|
// corner_type="round"
|
|
// ) xflip() mask2d_roundover(10);
|
|
// }
|
|
// Example: Mixing it up a bit.
|
|
// diff()
|
|
// cuboid(60) {
|
|
// tag("keep") edge_profile_asym(LEFT, flip=true, corner_type="chamfer")
|
|
// xflip() mask2d_chamfer(10);
|
|
// edge_profile_asym(RIGHT)
|
|
// mask2d_roundover(10);
|
|
// }
|
|
// Example: Chamfering internal corners.
|
|
// cuboid(40) {
|
|
// edge_profile_asym(
|
|
// [FWD+DOWN,FWD+LEFT],
|
|
// corner_type="chamfer", size=[10,10]/sqrt(2)
|
|
// ) xflip() mask2d_chamfer(10);
|
|
// }
|
|
// Example: Rounding internal corners.
|
|
// cuboid(40) {
|
|
// edge_profile_asym(
|
|
// [FWD+DOWN,FWD+LEFT],
|
|
// corner_type="round", size=[10,10]
|
|
// ) xflip() mask2d_roundover(10);
|
|
// }
|
|
|
|
module edge_profile_asym(
|
|
edges=EDGES_ALL, except=[],
|
|
excess=0.01, convexity=10,
|
|
flip=false, corner_type="none",
|
|
size=[0,0]
|
|
) {
|
|
function _corner_orientation(pos,pvec) =
|
|
let(
|
|
j = [for (i=[0:2]) if (pvec[i]) i][0],
|
|
T = (pos.x>0? xflip() : ident(4)) *
|
|
(pos.y>0? yflip() : ident(4)) *
|
|
(pos.z>0? zflip() : ident(4)) *
|
|
rot(-120*(2-j), v=[1,1,1])
|
|
) T;
|
|
|
|
function _default_edge_orientation(edge) =
|
|
edge.z < 0? [[-edge.x,-edge.y,0], UP] :
|
|
edge.z > 0? [[-edge.x,-edge.y,0], DOWN] :
|
|
edge.y < 0? [[-edge.x,0,0], BACK] :
|
|
[[-edge.x,0,0], FWD] ;
|
|
|
|
function _edge_transition_needs_flip(from,to) =
|
|
let(
|
|
flip_edges = [
|
|
[BOT+FWD, [FWD+LEFT, FWD+RIGHT]],
|
|
[BOT+BACK, [BACK+LEFT, BACK+RIGHT]],
|
|
[BOT+LEFT, []],
|
|
[BOT+RIGHT, []],
|
|
[TOP+FWD, [FWD+LEFT, FWD+RIGHT]],
|
|
[TOP+BACK, [BACK+LEFT, BACK+RIGHT]],
|
|
[TOP+LEFT, []],
|
|
[TOP+RIGHT, []],
|
|
[FWD+LEFT, [TOP+FWD, BOT+FWD]],
|
|
[FWD+RIGHT, [TOP+FWD, BOT+FWD]],
|
|
[BACK+LEFT, [TOP+BACK, BOT+BACK]],
|
|
[BACK+RIGHT, [TOP+BACK, BOT+BACK]],
|
|
],
|
|
i = search([from], flip_edges, num_returns_per_match=1)[0],
|
|
check = assert(i!=[], "Bad edge vector.")
|
|
) in_list(to,flip_edges[i][1]);
|
|
|
|
function _edge_corner_numbers(vec) =
|
|
let(
|
|
v2 = [for (i=idx(vec)) vec[i]? (vec[i]+1)/2*pow(2,i) : 0],
|
|
off = v2.x + v2.y + v2.z,
|
|
xs = [0, if (!vec.x) 1],
|
|
ys = [0, if (!vec.y) 2],
|
|
zs = [0, if (!vec.z) 4]
|
|
) [for (x=xs, y=ys, z=zs) x+y+z + off];
|
|
|
|
function _gather_contiguous_edges(edge_corners) =
|
|
let(
|
|
no_tri_corners = all([for(cn = [0:7]) len([for (ec=edge_corners) if(in_list(cn,ec[1])) 1])<3]),
|
|
check = assert(no_tri_corners, "Cannot have three edges that meet at the same corner.")
|
|
)
|
|
_gather_contiguous_edges_r(
|
|
[for (i=idx(edge_corners)) if(i) edge_corners[i]],
|
|
edge_corners[0][1],
|
|
[edge_corners[0][0]], []);
|
|
|
|
function _gather_contiguous_edges_r(edge_corners, ecns, curr, out) =
|
|
len(edge_corners)==0? [each out, curr] :
|
|
let(
|
|
i1 = [
|
|
for (i = idx(edge_corners))
|
|
if (in_list(ecns[0], edge_corners[i][1]))
|
|
i
|
|
],
|
|
i2 = [
|
|
for (i = idx(edge_corners))
|
|
if (in_list(ecns[1], edge_corners[i][1]))
|
|
i
|
|
]
|
|
) !i1 && !i2? _gather_contiguous_edges_r(
|
|
[for (i=idx(edge_corners)) if(i) edge_corners[i]],
|
|
edge_corners[0][1],
|
|
[edge_corners[0][0]],
|
|
[each out, curr]
|
|
) : let(
|
|
nu_curr = [
|
|
if (i1) edge_corners[i1[0]][0],
|
|
each curr,
|
|
if (i2) edge_corners[i2[0]][0],
|
|
],
|
|
nu_ecns = [
|
|
if (!i1) ecns[0] else [
|
|
for (ecn = edge_corners[i1[0]][1])
|
|
if (ecn != ecns[0]) ecn
|
|
][0],
|
|
if (!i2) ecns[1] else [
|
|
for (ecn = edge_corners[i2[0]][1])
|
|
if (ecn != ecns[1]) ecn
|
|
][0],
|
|
],
|
|
rem = [
|
|
for (i = idx(edge_corners))
|
|
if (i != i1[0] && i != i2[0])
|
|
edge_corners[i]
|
|
]
|
|
)
|
|
_gather_contiguous_edges_r(rem, nu_ecns, nu_curr, out);
|
|
|
|
function _edge_transition_inversions(edge_string) =
|
|
let(
|
|
// boolean cumulative sum
|
|
bcs = function(list, i=0, inv=false, out=[])
|
|
i>=len(list)? out :
|
|
let( nu_inv = list[i]? !inv : inv )
|
|
bcs(list, i+1, nu_inv, [each out, nu_inv]),
|
|
inverts = bcs([
|
|
false,
|
|
for(i = idx(edge_string)) if (i)
|
|
_edge_transition_needs_flip(
|
|
edge_string[i-1],
|
|
edge_string[i]
|
|
)
|
|
]),
|
|
boti = [for(i = idx(edge_string)) if (edge_string[i].z<0) i],
|
|
topi = [for(i = idx(edge_string)) if (edge_string[i].z>0) i],
|
|
lfti = [for(i = idx(edge_string)) if (edge_string[i].x<0) i],
|
|
rgti = [for(i = idx(edge_string)) if (edge_string[i].x>0) i],
|
|
idx = [for (m = [boti, topi, lfti, rgti]) if(m) m[0]][0],
|
|
rinverts = inverts[idx] == false? inverts : [for (x = inverts) !x]
|
|
) rinverts;
|
|
|
|
function _is_closed_edge_loop(edge_string) =
|
|
let(
|
|
e1 = edge_string[0],
|
|
e2 = last(edge_string)
|
|
)
|
|
len([for (i=[0:2]) if (abs(e1[i])==1 && e1[i]==e2[i]) 1]) == 1 &&
|
|
len([for (i=[0:2]) if (e1[i]==0 && abs(e2[i])==1) 1]) == 1 &&
|
|
len([for (i=[0:2]) if (e2[i]==0 && abs(e1[i])==1) 1]) == 1;
|
|
|
|
function _edge_pair_perp_vec(e1,e2) =
|
|
[for (i=[0:2]) if (abs(e1[i])==1 && e1[i]==e2[i]) -e1[i] else 0];
|
|
|
|
req_children($children);
|
|
check1 = assert($parent_geom != undef, "No object to attach to!")
|
|
assert(in_list(corner_type, ["none", "round", "chamfer", "sharp"]))
|
|
assert(is_bool(flip));
|
|
edges = _edges(edges, except=except);
|
|
vecs = [
|
|
for (i = [0:3], axis=[0:2])
|
|
if (edges[axis][i]>0)
|
|
EDGE_OFFSETS[axis][i]
|
|
];
|
|
all_vecs_are_edges = all([for (vec = vecs) sum(v_abs(vec))==2]);
|
|
check2 = assert(all_vecs_are_edges, "All vectors must be edges.");
|
|
edge_corners = [for (vec = vecs) [vec, _edge_corner_numbers(vec)]];
|
|
edge_strings = _gather_contiguous_edges(edge_corners);
|
|
default_tag("remove")
|
|
for (edge_string = edge_strings) {
|
|
inverts = _edge_transition_inversions(edge_string);
|
|
flipverts = [for (x = inverts) flip? !x : x];
|
|
vecpairs = [
|
|
for (i = idx(edge_string))
|
|
let (p = _default_edge_orientation(edge_string[i]))
|
|
flipverts[i]? [p.y,p.x] : p
|
|
];
|
|
is_loop = _is_closed_edge_loop(edge_string);
|
|
for (i = idx(edge_string)) {
|
|
if (corner_type!="none" && (i || is_loop)) {
|
|
e1 = select(edge_string,i-1);
|
|
e2 = select(edge_string,i);
|
|
vp1 = select(vecpairs,i-1);
|
|
vp2 = select(vecpairs,i);
|
|
pvec = _edge_pair_perp_vec(e1,e2);
|
|
pos = [for (i=[0:2]) e1[i]? e1[i] : e2[i]];
|
|
mirT = _corner_orientation(pos, pvec);
|
|
$attach_to = undef;
|
|
$attach_anchor = _find_anchor(pos, $parent_geom);
|
|
$attach_norot = true;
|
|
$profile_type = "corner";
|
|
position(pos) {
|
|
multmatrix(mirT) {
|
|
if (vp1.x == vp2.x && size.y > 0) {
|
|
zflip() {
|
|
if (corner_type=="chamfer") {
|
|
fn = $fn;
|
|
move([size.y,size.y]) {
|
|
rotate_extrude(angle=90, $fn=4)
|
|
left_half(planar=true, $fn=fn)
|
|
zrot(-90) fwd(size.y) children();
|
|
}
|
|
linear_extrude(height=size.x) {
|
|
mask2d_roundover(size.y, inset=0.01, $fn=4);
|
|
}
|
|
} else if (corner_type=="round") {
|
|
move([size.y,size.y]) {
|
|
rotate_extrude(angle=90)
|
|
left_half(planar=true)
|
|
zrot(-90) fwd(size.y) children();
|
|
}
|
|
linear_extrude(height=size.x) {
|
|
mask2d_roundover(size.y, inset=0.01);
|
|
}
|
|
}
|
|
}
|
|
} else if (vp1.y == vp2.y) {
|
|
if (corner_type=="chamfer") {
|
|
fn = $fn;
|
|
rotate_extrude(angle=90, $fn=4)
|
|
right_half(planar=true, $fn=fn)
|
|
children();
|
|
rotate_extrude(angle=90, $fn=4)
|
|
left_half(planar=true, $fn=fn)
|
|
children();
|
|
} else if (corner_type=="round") {
|
|
rotate_extrude(angle=90)
|
|
right_half(planar=true)
|
|
children();
|
|
rotate_extrude(angle=90)
|
|
left_half(planar=true)
|
|
children();
|
|
} else { //corner_type == "sharp"
|
|
intersection() {
|
|
rot([90,0, 0]) linear_extrude(height=100,center=true,convexity=convexity) children();
|
|
rot([90,0,90]) linear_extrude(height=100,center=true,convexity=convexity) children();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (i = idx(edge_string)) {
|
|
$attach_to = undef;
|
|
$attach_anchor = _find_anchor(edge_string[i], $parent_geom);
|
|
$attach_norot = true;
|
|
$profile_type = "edge";
|
|
edge_profile(edge_string[i], excess=excess, convexity=convexity) {
|
|
if (flipverts[i]) {
|
|
mirror([-1,1]) children();
|
|
} else {
|
|
children();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Module: corner_profile()
|
|
// Synopsis: Rotationally extrudes a 2d edge profile into corner mask on the given corners of the parent.
|
|
// SynTags: Geom
|
|
// Topics: Attachments, Masking
|
|
// See Also: attachable(), position(), attach(), face_profile(), edge_profile(), corner_mask(), face_mask(), edge_mask()
|
|
// Usage:
|
|
// PARENT() corner_profile([corners], [except], [r=|d=], [convexity=]) CHILDREN;
|
|
// Description:
|
|
// Takes a 2D mask shape, rotationally extrudes and converts it into a corner mask, and attaches it
|
|
// to the selected corners with the appropriate orientation. If no tag is set then `corner_profile()`
|
|
// sets the tag for children to "remove" so that it will work with the default {{diff()}} tag.
|
|
// See [Specifying Corners](attachments.scad#subsection-specifying-corners) for information on how to specify corner sets.
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// corners = Corners to mask. See [Specifying Corners](attachments.scad#subsection-specifying-corners). Default: All corners.
|
|
// except = Corners to explicitly NOT mask. See [Specifying Corners](attachments.scad#subsection-specifying-corners). Default: No corners.
|
|
// ---
|
|
// r = Radius of corner mask.
|
|
// d = Diameter of corner mask.
|
|
// convexity = Max number of times a line could intersect the perimeter of the mask shape. Default: 10
|
|
// Side Effects:
|
|
// Tags the children with "remove" (and hence sets `$tag`) if no tag is already set.
|
|
// `$idx` is set to the index number of each corner.
|
|
// `$attach_anchor` is set for each corner given, to the `[ANCHOR, POSITION, ORIENT, SPIN]` information for that anchor.
|
|
// `$profile_type` is set to `"corner"`.
|
|
// Example:
|
|
// diff()
|
|
// cuboid([50,60,70],rounding=10,edges="Z",anchor=CENTER) {
|
|
// corner_profile(TOP,r=10)
|
|
// mask2d_teardrop(r=10, angle=40);
|
|
// }
|
|
module corner_profile(corners=CORNERS_ALL, except=[], r, d, convexity=10) {
|
|
check1 = assert($parent_geom != undef, "No object to attach to!");
|
|
r = max(0.01, get_radius(r=r, d=d, dflt=undef));
|
|
check2 = assert(is_num(r), "Bad r/d argument.");
|
|
corners = _corners(corners, except=except);
|
|
vecs = [for (i = [0:7]) if (corners[i]>0) CORNER_OFFSETS[i]];
|
|
all_vecs_are_corners = all([for (vec = vecs) sum(v_abs(vec))==3]);
|
|
check3 = assert(all_vecs_are_corners, "All vectors must be corners.");
|
|
for ($idx = idx(vecs)) {
|
|
vec = vecs[$idx];
|
|
anch = _find_anchor(vec, $parent_geom);
|
|
$attach_to = undef;
|
|
$attach_anchor = anch;
|
|
$attach_norot = true;
|
|
$profile_type = "corner";
|
|
rotang = vec.z<0?
|
|
[ 0,0,180+v_theta(vec)-45] :
|
|
[180,0,-90+v_theta(vec)-45];
|
|
default_tag("remove"){
|
|
translate(anch[1]) {
|
|
rot(rotang) {
|
|
down(0.01) {
|
|
linear_extrude(height=r+0.01, center=false) {
|
|
difference() {
|
|
translate(-[0.01,0.01]) square(r);
|
|
translate([r,r]) circle(r=r*0.999);
|
|
}
|
|
}
|
|
}
|
|
translate([r,r]) zrot(180) {
|
|
rotate_extrude(angle=90, convexity=convexity) {
|
|
right(r) xflip() {
|
|
children();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Section: Making your objects attachable
|
|
|
|
|
|
// Module: attachable()
|
|
// Synopsis: Manages the anchoring, spin, orientation, and attachments for an object.
|
|
// Topics: Attachments
|
|
// See Also: reorient()
|
|
// Usage: Square/Trapezoid Geometry
|
|
// attachable(anchor, spin, two_d=true, size=, [size2=], [shift=], [override=], ...) {OBJECT; children();}
|
|
// Usage: Circle/Oval Geometry
|
|
// attachable(anchor, spin, two_d=true, r=|d=, ...) {OBJECT; children();}
|
|
// Usage: 2D Path/Polygon Geometry
|
|
// attachable(anchor, spin, two_d=true, path=, [extent=], ...) {OBJECT; children();}
|
|
// Usage: 2D Region Geometry
|
|
// attachable(anchor, spin, two_d=true, region=, [extent=], ...) {OBJECT; children();}
|
|
// Usage: Cubical/Prismoidal Geometry
|
|
// attachable(anchor, spin, [orient], size=, [size2=], [shift=], [override=], ...) {OBJECT; children();}
|
|
// Usage: Cylindrical Geometry
|
|
// attachable(anchor, spin, [orient], r=|d=, l=, [axis=], ...) {OBJECT; children();}
|
|
// Usage: Conical Geometry
|
|
// attachable(anchor, spin, [orient], r1=|d1=, r2=|d2=, l=, [axis=], ...) {OBJECT; children();}
|
|
// Usage: Spheroid/Ovoid Geometry
|
|
// attachable(anchor, spin, [orient], r=|d=, ...) {OBJECT; children();}
|
|
// Usage: Extruded Path/Polygon Geometry
|
|
// attachable(anchor, spin, path=, l=|h=, [extent=], ...) {OBJECT; children();}
|
|
// Usage: Extruded Region Geometry
|
|
// attachable(anchor, spin, region=, l=|h=, [extent=], ...) {OBJECT; children();}
|
|
// Usage: VNF Geometry
|
|
// attachable(anchor, spin, [orient], vnf=, [extent=], ...) {OBJECT; children();}
|
|
// Usage: Pre-Specified Geometry
|
|
// attachable(anchor, spin, [orient], geom=) {OBJECT; children();}
|
|
//
|
|
// Description:
|
|
// Manages the anchoring, spin, orientation, and attachments for OBJECT, located in a 3D volume or 2D area.
|
|
// A managed 3D volume is assumed to be vertically (Z-axis) oriented, and centered.
|
|
// A managed 2D area is just assumed to be centered. The shape to be managed is given
|
|
// as the first child to this module, and the second child should be given as `children()`.
|
|
// For example, to manage a conical shape:
|
|
// ```openscad
|
|
// attachable(anchor, spin, orient, r1=r1, r2=r2, l=h) {
|
|
// cyl(r1=r1, r2=r2, l=h);
|
|
// children();
|
|
// }
|
|
// ```
|
|
// .
|
|
// If this is *not* run as a child of `attach()` with the `to` argument
|
|
// given, then the following transformations are performed in order:
|
|
// * Translates so the `anchor` point is at the origin (0,0,0).
|
|
// * Rotates around the Z axis by `spin` degrees counter-clockwise.
|
|
// * Rotates so the top of the part points towards the vector `orient`.
|
|
// .
|
|
// If this is called as a child of `attach(from,to)`, then the info
|
|
// for the anchor points referred to by `from` and `to` are fetched,
|
|
// which will include position, direction, and spin. With that info,
|
|
// the following transformations are performed:
|
|
// * Translates this part so it's anchor position matches the parent's anchor position.
|
|
// * Rotates this part so it's anchor direction vector exactly opposes the parent's anchor direction vector.
|
|
// * Rotates this part so it's anchor spin matches the parent's anchor spin.
|
|
// .
|
|
// In addition to handling positioning of the attachable object,
|
|
// this module is also responsible for handing coloring of objects with {{recolor()}} and {{color_this()}}, and
|
|
// it is responsible for processing tags and determining whether the object should
|
|
// display or not in the current context. The determination based on the tags of whether to display the attachable object
|
|
// often occurs in this module, which means that an object which does not display (e.g. a "remove" tagged object
|
|
// inside {{diff()}}) cannot have internal {{tag()}} calls that change its tags and cause submodel
|
|
// portions to display: the entire object simply does not run. If you want the use the attachable object's internal tags outside
|
|
// of the attachable object you can set `expose_tags=true` which delays the determination to display objects to the children.
|
|
// For this to work correctly, all of the children must be attachables. An example situation where you should set
|
|
// `expose_tags=true` is when you want to have negative space in an attachable object that gets removed from the parent via
|
|
// a "remove" tagged component of your attachable.
|
|
// .
|
|
// Application of {{recolor()}} and {{color_this()}} also happens in this module and normally it applies to the
|
|
// entire attachable object, so coloring commands that you give internally in the first child to `attachable()` have no effect.
|
|
// Generally it makes sense that if a user specifies a color for an attachable object, the entire object is displayed
|
|
// in that color, but if you want to retain control of color for sub-parts of an attachable object, you can use
|
|
// the `keep_color=true` option, which delays the assignment of colors to the child level. For this to work
|
|
// correctly, all of the sub-parts of your attachable object must be attachables. Also note that this option could
|
|
// be confusing to users who don't understand why color commands are not working on the object.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
//
|
|
// Arguments:
|
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#subsection-anchor). Default: `CENTER`
|
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#subsection-spin). Default: `0`
|
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#subsection-orient). Default: `UP`
|
|
// ---
|
|
// size = If given as a 3D vector, contains the XY size of the bottom of the cuboidal/prismoidal volume, and the Z height. If given as a 2D vector, contains the front X width of the rectangular/trapezoidal shape, and the Y length.
|
|
// size2 = If given as a 2D vector, contains the XY size of the top of the prismoidal volume. If given as a number, contains the back width of the trapezoidal shape.
|
|
// shift = If given as a 2D vector, shifts the top of the prismoidal or conical shape by the given amount. If given as a number, shifts the back of the trapezoidal shape right by that amount. Default: No shift.
|
|
// r = Radius of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d = Diameter of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r1 = Radius of the bottom of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r2 = Radius of the top of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d1 = Diameter of the bottom of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// d2 = Diameter of the top of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// l/h = Length of the cylindrical, conical, or extruded path volume along axis.
|
|
// vnf = The [VNF](vnf.scad) of the volume.
|
|
// path = The path to generate a polygon from.
|
|
// region = The region to generate a shape from.
|
|
// extent = If true, calculate anchors by extents, rather than intersection, for VNFs and paths. Default: true.
|
|
// cp = If given, specifies the centerpoint of the volume. Default: `[0,0,0]`
|
|
// offset = If given, offsets the perimeter of the volume around the centerpoint.
|
|
// anchors = If given as a list of anchor points, allows named anchor points.
|
|
// two_d = If true, the attachable shape is 2D. If false, 3D. Default: false (3D)
|
|
// axis = The vector pointing along the axis of a geometry. Default: UP
|
|
// override = Function that takes an anchor and for 3d returns a triple `[position, direction, spin]` or for 2d returns a pair `[position,direction]` to use for that anchor to override the normal one. You can also supply a lookup table that is a list of `[anchor, [position, direction, spin]]` entries. If the direction/position/spin that is returned is undef then the default will be used. This option applies only to the "trapezoid" and "prismoid" geometry types.
|
|
// geom = If given, uses the pre-defined (via {{attach_geom()}} geometry.
|
|
// expose_tags = If true then delay the decision to display or not display this object to the children, which it possible for tags to respond to operations like {{diff()}} used outside the attachble object. Only works correctly if everything in the attachable is also attachable. Default: false
|
|
// keep_color = If true then delay application of color to the children, which means that externally applied color is overridden by color specified within the attachable. Only works properly if everything in the attachable is also attacahble. Default: false
|
|
//
|
|
// Side Effects:
|
|
// `$parent_anchor` is set to the parent object's `anchor` value.
|
|
// `$parent_spin` is set to the parent object's `spin` value.
|
|
// `$parent_orient` is set to the parent object's `orient` value.
|
|
// `$parent_geom` is set to the parent object's `geom` value.
|
|
// `$parent_size` is set to the parent object's cubical `[X,Y,Z]` volume size.
|
|
// `$color` is used to set the color of the object
|
|
// `$save_color` is used to revert color to the parent's color
|
|
//
|
|
// Example(NORENDER): Cubical Shape
|
|
// attachable(anchor, spin, orient, size=size) {
|
|
// cube(size, center=true);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Prismoidal Shape
|
|
// attachable(
|
|
// anchor, spin, orient,
|
|
// size=point3d(botsize,h),
|
|
// size2=topsize,
|
|
// shift=shift
|
|
// ) {
|
|
// prismoid(botsize, topsize, h=h, shift=shift);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, Z-Axis Aligned
|
|
// attachable(anchor, spin, orient, r=r, l=h) {
|
|
// cyl(r=r, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, Y-Axis Aligned
|
|
// attachable(anchor, spin, orient, r=r, l=h, axis=BACK) {
|
|
// cyl(r=r, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, X-Axis Aligned
|
|
// attachable(anchor, spin, orient, r=r, l=h, axis=RIGHT) {
|
|
// cyl(r=r, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Conical Shape, Z-Axis Aligned
|
|
// attachable(anchor, spin, orient, r1=r1, r2=r2, l=h) {
|
|
// cyl(r1=r1, r2=r2, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Conical Shape, Y-Axis Aligned
|
|
// attachable(anchor, spin, orient, r1=r1, r2=r2, l=h, axis=BACK) {
|
|
// cyl(r1=r1, r2=r2, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Conical Shape, X-Axis Aligned
|
|
// attachable(anchor, spin, orient, r1=r1, r2=r2, l=h, axis=RIGHT) {
|
|
// cyl(r1=r1, r2=r2, l=h);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Spherical Shape
|
|
// attachable(anchor, spin, orient, r=r) {
|
|
// sphere(r=r);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Extruded Polygon Shape, by Extents
|
|
// attachable(anchor, spin, orient, path=path, l=length) {
|
|
// linear_extrude(height=length, center=true)
|
|
// polygon(path);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Extruded Polygon Shape, by Intersection
|
|
// attachable(anchor, spin, orient, path=path, l=length, extent=false) {
|
|
// linear_extrude(height=length, center=true)
|
|
// polygon(path);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Arbitrary VNF Shape, by Extents
|
|
// attachable(anchor, spin, orient, vnf=vnf) {
|
|
// vnf_polyhedron(vnf);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Arbitrary VNF Shape, by Intersection
|
|
// attachable(anchor, spin, orient, vnf=vnf, extent=false) {
|
|
// vnf_polyhedron(vnf);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): 2D Rectangular Shape
|
|
// attachable(anchor, spin, orient, two_d=true, size=size) {
|
|
// square(size, center=true);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): 2D Trapezoidal Shape
|
|
// attachable(
|
|
// anchor, spin, orient,
|
|
// two_d=true,
|
|
// size=[x1,y],
|
|
// size2=x2,
|
|
// shift=shift
|
|
// ) {
|
|
// trapezoid(w1=x1, w2=x2, h=y, shift=shift);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): 2D Circular Shape
|
|
// attachable(anchor, spin, orient, two_d=true, r=r) {
|
|
// circle(r=r);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Arbitrary 2D Polygon Shape, by Extents
|
|
// attachable(anchor, spin, orient, two_d=true, path=path) {
|
|
// polygon(path);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Arbitrary 2D Polygon Shape, by Intersection
|
|
// attachable(anchor, spin, orient, two_d=true, path=path, extent=false) {
|
|
// polygon(path);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example(NORENDER): Using Pre-defined Geometry
|
|
// geom = atype=="perim"? attach_geom(two_d=true, path=path, extent=false) :
|
|
// atype=="extents"? attach_geom(two_d=true, path=path, extent=true) :
|
|
// atype=="circle"? attach_geom(two_d=true, r=r) :
|
|
// assert(false, "Bad atype");
|
|
// attachable(anchor, spin, orient, geom=geom) {
|
|
// polygon(path);
|
|
// children();
|
|
// }
|
|
//
|
|
// Example: An object can be designed to attach as negative space using {{diff()}}, but if you want an object to include both positive and negative space then you run into trouble because tags inside the `attachable()` are ignored. One solution is to call attachable() twice. This example shows how two calls to attachable can create an object with positive and negative space. Note, however, that children in the negative space are differenced away: the highlighted little cube does not survive into the final model.
|
|
// module thing(anchor,spin,orient) {
|
|
// tag("remove") attachable(size=[15,15,15],anchor=anchor,spin=spin,orient=orient){
|
|
// cuboid([10,10,16]);
|
|
// union(){} // dummy children
|
|
// }
|
|
// attachable(size=[15,15,15], anchor=anchor, spin=spin, orient=orient){
|
|
// cuboid([15,15,15]);
|
|
// children();
|
|
// }
|
|
// }
|
|
// diff()
|
|
// cube([19,10,19])
|
|
// attach([FRONT],overlap=-4)
|
|
// thing(anchor=TOP)
|
|
// # attach(TOP) cuboid(2,anchor=TOP);
|
|
// Example: Here is an example where the "keep" tag allows children to appear in the negative space. That tag is also needed for this module to produce the desired output. As above, the tag must be applied outside the attachable() call.
|
|
// module thing(anchor = CENTER, spin = 0, orient = UP) {
|
|
// tag("remove") attachable(anchor, spin, orient, d1=0,d2=95,h=33) {
|
|
// cylinder(h = 33.1, d1 = 0, d2 = 95, anchor=CENTER);
|
|
// union(){} // dummy children
|
|
// }
|
|
// tag("keep") attachable(anchor, spin, orient,d1=0,d2=95,h=33) {
|
|
// cylinder(h = 33, d = 10,anchor=CENTER);
|
|
// children();
|
|
// }
|
|
// }
|
|
// diff()
|
|
// cube(100)
|
|
// attach([FRONT,TOP],overlap=-4)
|
|
// thing(anchor=TOP)
|
|
// tube(ir=12,h=10);
|
|
// Example: A different way to achieve similar effects to the above to examples is to use the `expose_tags` parameter. This parameter allows you to use just one call to attachable. The second example above can also be rewritten like this.
|
|
// module thing(anchor,spin,orient) {
|
|
// attachable(size=[15,15,15],anchor=anchor,spin=spin,orient=orient,expose_tags=true){
|
|
// union(){
|
|
// cuboid([15,15,15]);
|
|
// tag("remove")cuboid([10,10,16]);
|
|
// }
|
|
// children();
|
|
// }
|
|
// }
|
|
// diff()
|
|
// cube([19,10,19])
|
|
// attach([FRONT],overlap=-4)
|
|
// thing(anchor=TOP);
|
|
// Example: An advantage of using `expose_tags` is that it can work on nested constructions. Here the child cylinder is aligned relative to its parent and removed from the calling parent object.
|
|
// $fn=64;
|
|
// module thing(anchor=BOT){
|
|
// attachable(anchor = anchor,d=9,h=6,expose_tags=true){
|
|
// cyl(d = 9, h = 6)
|
|
// tag("remove")
|
|
// align(RIGHT+TOP,inside=true)
|
|
// left(1)up(1)cyl(l=11, d=3);
|
|
// children();
|
|
// }
|
|
// }
|
|
// back_half()
|
|
// diff()
|
|
// cuboid(10)
|
|
// position(TOP)thing(anchor=BOT);
|
|
// Example(3D,NoAxes): Here an attachable module uses {{recolor()}} to change the color of a sub-part, producing the result shown on the left. But if the caller applies color to the attachable, then both the green and yellow are changed, as shown on the right.
|
|
// module thing(anchor=CENTER) {
|
|
// attachable(anchor,size=[10,10,10]) {
|
|
// cuboid(10)
|
|
// position(TOP) recolor("green")
|
|
// cuboid(5,anchor=BOT);
|
|
// children();
|
|
// }
|
|
// }
|
|
// move([-15,-15])
|
|
// thing()
|
|
// attach(RIGHT,BOT)
|
|
// recolor("blue") cyl(d=5,h=5);
|
|
// recolor("pink") thing()
|
|
// attach(RIGHT,BOT)
|
|
// recolor("blue") cyl(d=5,h=5);
|
|
// Example(3D,NoAxes): Using the `keep_color=true` option enables the green color to persist, even when the user specifies a color.
|
|
// module thing(anchor=CENTER) {
|
|
// attachable(anchor,size=[10,10,10],keep_color=true) {
|
|
// cuboid(10)
|
|
// position(TOP) recolor("green")
|
|
// cuboid(5,anchor=BOT);
|
|
// children();
|
|
// }
|
|
// }
|
|
// recolor("pink") thing()
|
|
// attach(RIGHT,BOT)
|
|
// recolor("blue") cyl(d=5,h=5);
|
|
|
|
module attachable(
|
|
anchor, spin, orient,
|
|
size, size2, shift,
|
|
r,r1,r2, d,d1,d2, l,h,
|
|
vnf, path, region,
|
|
extent=true,
|
|
cp=[0,0,0],
|
|
offset=[0,0,0],
|
|
anchors=[],
|
|
two_d=false,
|
|
axis=UP,override,
|
|
geom,
|
|
expose_tags=false, keep_color=false
|
|
) {
|
|
dummy1 =
|
|
assert($children==2, "attachable() expects exactly two children; the shape to manage, and the union of all attachment candidates.")
|
|
assert(is_undef(anchor) || is_vector(anchor) || is_string(anchor), str("Got: ",anchor))
|
|
assert(is_undef(spin) || is_vector(spin,3) || is_num(spin), str("Got: ",spin))
|
|
assert(is_undef(orient) || is_vector(orient,3), str("Got: ",orient));
|
|
anchor = first_defined([$anchor_override, anchor, CENTER]);
|
|
spin = default(spin, 0);
|
|
orient = is_def($anchor_override)? UP : default(orient, UP);
|
|
region = !is_undef(region)? region :
|
|
!is_undef(path)? [path] :
|
|
undef;
|
|
geom = is_def(geom)? geom :
|
|
attach_geom(
|
|
size=size, size2=size2, shift=shift,
|
|
r=r, r1=r1, r2=r2, h=h,
|
|
d=d, d1=d1, d2=d2, l=l,
|
|
vnf=vnf, region=region, extent=extent,
|
|
cp=cp, offset=offset, anchors=anchors,
|
|
two_d=two_d, axis=axis, override=override
|
|
);
|
|
m = _attach_transform(anchor,spin,orient,geom);
|
|
multmatrix(m) {
|
|
$parent_anchor = anchor;
|
|
$parent_spin = spin;
|
|
$parent_orient = orient;
|
|
$parent_geom = geom;
|
|
$parent_size = _attach_geom_size(geom);
|
|
$attach_to = undef;
|
|
$anchor_override=undef;
|
|
if (expose_tags || _is_shown()){
|
|
if (!keep_color)
|
|
_color($color) children(0);
|
|
else {
|
|
$save_color=undef; // Force color_this() color in effect to persist for the entire object
|
|
children(0);
|
|
}
|
|
}
|
|
if (is_def($save_color)) {
|
|
$color=$save_color; // Revert to the color before color_this() call
|
|
$save_color=undef;
|
|
children(1);
|
|
}
|
|
else children(1);
|
|
}
|
|
}
|
|
|
|
// Function: reorient()
|
|
// Synopsis: Calculates the transformation matrix needed to reorient an object.
|
|
// SynTags: Trans, Path, VNF
|
|
// Topics: Attachments
|
|
// See Also: reorient(), attachable()
|
|
// Usage: Square/Trapezoid Geometry
|
|
// mat = reorient(anchor, spin, [orient], two_d=true, size=, [size2=], [shift=], ...);
|
|
// pts = reorient(anchor, spin, [orient], two_d=true, size=, [size2=], [shift=], p=, ...);
|
|
// Usage: Circle/Oval Geometry
|
|
// mat = reorient(anchor, spin, [orient], two_d=true, r=|d=, ...);
|
|
// pts = reorient(anchor, spin, [orient], two_d=true, r=|d=, p=, ...);
|
|
// Usage: 2D Path/Polygon Geometry
|
|
// mat = reorient(anchor, spin, [orient], two_d=true, path=, [extent=], ...);
|
|
// pts = reorient(anchor, spin, [orient], two_d=true, path=, [extent=], p=, ...);
|
|
// Usage: 2D Region/Polygon Geometry
|
|
// mat = reorient(anchor, spin, [orient], two_d=true, region=, [extent=], ...);
|
|
// pts = reorient(anchor, spin, [orient], two_d=true, region=, [extent=], p=, ...);
|
|
// Usage: Cubical/Prismoidal Geometry
|
|
// mat = reorient(anchor, spin, [orient], size=, [size2=], [shift=], ...);
|
|
// vnf = reorient(anchor, spin, [orient], size=, [size2=], [shift=], p=, ...);
|
|
// Usage: Cylindrical Geometry
|
|
// mat = reorient(anchor, spin, [orient], r=|d=, l=, [axis=], ...);
|
|
// vnf = reorient(anchor, spin, [orient], r=|d=, l=, [axis=], p=, ...);
|
|
// Usage: Conical Geometry
|
|
// mat = reorient(anchor, spin, [orient], r1=|d1=, r2=|d2=, l=, [axis=], ...);
|
|
// vnf = reorient(anchor, spin, [orient], r1=|d1=, r2=|d2=, l=, [axis=], p=, ...);
|
|
// Usage: Spheroid/Ovoid Geometry
|
|
// mat = reorient(anchor, spin, [orient], r|d=, ...);
|
|
// vnf = reorient(anchor, spin, [orient], r|d=, p=, ...);
|
|
// Usage: Extruded Path/Polygon Geometry
|
|
// mat = reorient(anchor, spin, [orient], path=, l=|h=, [extent=], ...);
|
|
// vnf = reorient(anchor, spin, [orient], path=, l=|h=, [extent=], p=, ...);
|
|
// Usage: Extruded Region Geometry
|
|
// mat = reorient(anchor, spin, [orient], region=, l=|h=, [extent=], ...);
|
|
// vnf = reorient(anchor, spin, [orient], region=, l=|h=, [extent=], p=, ...);
|
|
// Usage: VNF Geometry
|
|
// mat = reorient(anchor, spin, [orient], vnf, [extent], ...);
|
|
// vnf = reorient(anchor, spin, [orient], vnf, [extent], p=, ...);
|
|
//
|
|
// Description:
|
|
// Given anchor, spin, orient, and general geometry info for a managed volume, this calculates
|
|
// the transformation matrix needed to be applied to the contents of that volume. A managed 3D
|
|
// volume is assumed to be vertically (Z-axis) oriented, and centered. A managed 2D area is just
|
|
// assumed to be centered.
|
|
// .
|
|
// If `p` is not given, then the transformation matrix will be returned.
|
|
// If `p` contains a VNF, a new VNF will be returned with the vertices transformed by the matrix.
|
|
// If `p` contains a path, a new path will be returned with the vertices transformed by the matrix.
|
|
// If `p` contains a point, a new point will be returned, transformed by the matrix.
|
|
// .
|
|
// If `$attach_to` is not defined, then the following transformations are performed in order:
|
|
// * Translates so the `anchor` point is at the origin (0,0,0).
|
|
// * Rotates around the Z axis by `spin` degrees counter-clockwise.
|
|
// * Rotates so the top of the part points towards the vector `orient`.
|
|
// .
|
|
// If `$attach_to` is defined, as a consequence of `attach(from,to)`, then
|
|
// the following transformations are performed in order:
|
|
// * Translates this part so it's anchor position matches the parent's anchor position.
|
|
// * Rotates this part so it's anchor direction vector exactly opposes the parent's anchor direction vector.
|
|
// * Rotates this part so it's anchor spin matches the parent's anchor spin.
|
|
// .
|
|
// For a step-by-step explanation of attachments, see the [Attachments Tutorial](Tutorial-Attachments).
|
|
//
|
|
// Arguments:
|
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#subsection-anchor). Default: `CENTER`
|
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#subsection-spin). Default: `0`
|
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#subsection-orient). Default: `UP`
|
|
// ---
|
|
// size = If given as a 3D vector, contains the XY size of the bottom of the cuboidal/prismoidal volume, and the Z height. If given as a 2D vector, contains the front X width of the rectangular/trapezoidal shape, and the Y length.
|
|
// size2 = If given as a 2D vector, contains the XY size of the top of the prismoidal volume. If given as a number, contains the back width of the trapezoidal shape.
|
|
// shift = If given as a 2D vector, shifts the top of the prismoidal or conical shape by the given amount. If given as a number, shifts the back of the trapezoidal shape right by that amount. Default: No shift.
|
|
// r = Radius of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d = Diameter of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r1 = Radius of the bottom of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r2 = Radius of the top of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d1 = Diameter of the bottom of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// d2 = Diameter of the top of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// l/h = Length of the cylindrical, conical, or extruded path volume along axis.
|
|
// vnf = The [VNF](vnf.scad) of the volume.
|
|
// path = The path to generate a polygon from.
|
|
// region = The region to generate a shape from.
|
|
// extent = If true, calculate anchors by extents, rather than intersection. Default: false.
|
|
// cp = If given, specifies the centerpoint of the volume. Default: `[0,0,0]`
|
|
// offset = If given, offsets the perimeter of the volume around the centerpoint.
|
|
// anchors = If given as a list of anchor points, allows named anchor points.
|
|
// two_d = If true, the attachable shape is 2D. If false, 3D. Default: false (3D)
|
|
// axis = The vector pointing along the axis of a geometry. Default: UP
|
|
// p = The VNF, path, or point to transform.
|
|
function reorient(
|
|
anchor, spin, orient,
|
|
size, size2, shift,
|
|
r,r1,r2, d,d1,d2, l,h,
|
|
vnf, path, region,
|
|
extent=true,
|
|
offset=[0,0,0],
|
|
cp=[0,0,0],
|
|
anchors=[],
|
|
two_d=false,
|
|
axis=UP, override,
|
|
geom,
|
|
p=undef
|
|
) =
|
|
assert(is_undef(anchor) || is_vector(anchor) || is_string(anchor), str("Got: ",anchor))
|
|
assert(is_undef(spin) || is_vector(spin,3) || is_num(spin), str("Got: ",spin))
|
|
assert(is_undef(orient) || is_vector(orient,3), str("Got: ",orient))
|
|
let(
|
|
anchor = default(anchor, CENTER),
|
|
spin = default(spin, 0),
|
|
orient = default(orient, UP),
|
|
region = !is_undef(region)? region :
|
|
!is_undef(path)? [path] :
|
|
undef,
|
|
geom = is_def(geom)? geom :
|
|
attach_geom(
|
|
size=size, size2=size2, shift=shift,
|
|
r=r, r1=r1, r2=r2, h=h,
|
|
d=d, d1=d1, d2=d2, l=l,
|
|
vnf=vnf, region=region, extent=extent,
|
|
cp=cp, offset=offset, anchors=anchors,
|
|
two_d=two_d, axis=axis, override=override
|
|
),
|
|
$attach_to = undef
|
|
) _attach_transform(anchor,spin,orient,geom,p);
|
|
|
|
|
|
// Function: named_anchor()
|
|
// Synopsis: Creates an anchor data structure.
|
|
// Topics: Attachments
|
|
// See Also: reorient(), attachable()
|
|
// Usage:
|
|
// a = named_anchor(name, pos, [orient], [spin]);
|
|
// a = named_anchor(name, [pos], rot=, [flip=]);
|
|
// Description:
|
|
// Creates an anchor data structure. You can specify the position, orient direction and spin directly.
|
|
// Alternatively for the 3D case you can give a 4x4 rotation matrix which can specify the orient and spin, and optionally
|
|
// the position, using a translation component of the matrix. If you specify `pos` along with `rot` then the position you
|
|
// give overrides any translation included in `rot`. For a step-by-step explanation of attachments,
|
|
// see the [Attachments Tutorial](Tutorial-Attachments).
|
|
// Arguments:
|
|
// name = The string name of the anchor. Lowercase. Words separated by single dashes. No spaces.
|
|
// pos = The [X,Y,Z] position of the anchor.
|
|
// orient = A vector pointing in the direction parts should project from the anchor position. Default: UP
|
|
// spin = If needed, the angle to rotate the part around the direction vector. Default: 0
|
|
// ---
|
|
// rot = A 4x4 rotations matrix, which may include a translation
|
|
// flip = If true, flip the anchor the opposite direction. Default: false
|
|
function named_anchor(name, pos, orient, spin, rot, flip) =
|
|
assert(num_defined([orient,spin])==0 || num_defined([rot,flip])==0, "Cannot mix orient or spin with rot or flip")
|
|
assert(num_defined([pos,rot])>0, "Must give pos or rot")
|
|
is_undef(rot) ? [name, pos, default(orient,UP), default(spin,0)]
|
|
:
|
|
let(
|
|
flip = default(flip,false),
|
|
pos = default(pos,apply(rot,CTR)),
|
|
rotpart = _force_rot(rot),
|
|
dummy = assert(approx(det4(rotpart),1), "Input rotation is not a rotation matrix"),
|
|
dir = flip ? apply(rotpart,DOWN)
|
|
: apply(rotpart,UP),
|
|
rot = flip? affine3d_rot_by_axis(apply(rotpart,BACK),180)*rot
|
|
: rot,
|
|
decode=rot_decode(rot(to=UP,from=dir)*_force_rot(rot)),
|
|
spin = decode[0]*sign(decode[1].z)
|
|
)
|
|
[name, pos, dir, spin];
|
|
|
|
|
|
function _force_rot(T) =
|
|
[for(i=[0:3])
|
|
[for(j=[0:3]) j<3 ? T[i][j] :
|
|
i==3 ? 1
|
|
: 0]];
|
|
|
|
// Function: attach_geom()
|
|
// Synopsis: Returns the internal geometry description of an attachable object.
|
|
// Topics: Attachments
|
|
// See Also: reorient(), attachable()
|
|
// Usage: Null/Point Geometry
|
|
// geom = attach_geom(...);
|
|
// Usage: Square/Trapezoid Geometry
|
|
// geom = attach_geom(two_d=true, size=, [size2=], [shift=], ...);
|
|
// Usage: Circle/Oval Geometry
|
|
// geom = attach_geom(two_d=true, r=|d=, ...);
|
|
// Usage: 2D Path/Polygon/Region Geometry
|
|
// geom = attach_geom(two_d=true, region=, [extent=], ...);
|
|
// Usage: Cubical/Prismoidal Geometry
|
|
// geom = attach_geom(size=, [size2=], [shift=], ...);
|
|
// Usage: Cylindrical Geometry
|
|
// geom = attach_geom(r=|d=, l=|h=, [axis=], ...);
|
|
// Usage: Conical Geometry
|
|
// geom = attach_geom(r1|d1=, r2=|d2=, l=, [axis=], ...);
|
|
// Usage: Spheroid/Ovoid Geometry
|
|
// geom = attach_geom(r=|d=, ...);
|
|
// Usage: Extruded 2D Path/Polygon/Region Geometry
|
|
// geom = attach_geom(region=, l=|h=, [extent=], [shift=], [scale=], [twist=], ...);
|
|
// Usage: VNF Geometry
|
|
// geom = attach_geom(vnf=, [extent=], ...);
|
|
//
|
|
// Description:
|
|
// Given arguments that describe the geometry of an attachable object, returns the internal geometry description.
|
|
// This will probably not not ever need to be called by the end user.
|
|
//
|
|
// Arguments:
|
|
// ---
|
|
// size = If given as a 3D vector, contains the XY size of the bottom of the cuboidal/prismoidal volume, and the Z height. If given as a 2D vector, contains the front X width of the rectangular/trapezoidal shape, and the Y length.
|
|
// size2 = If given as a 2D vector, contains the XY size of the top of the prismoidal volume. If given as a number, contains the back width of the trapezoidal shape.
|
|
// shift = If given as a 2D vector, shifts the top of the prismoidal or conical shape by the given amount. If given as a number, shifts the back of the trapezoidal shape right by that amount. Default: No shift.
|
|
// scale = If given as number or a 2D vector, scales the top of the shape, relative to the bottom. Default: `[1,1]`
|
|
// twist = If given as number, rotates the top of the shape by the given number of degrees clockwise, relative to the bottom. Default: `0`
|
|
// r = Radius of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d = Diameter of the cylindrical/conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r1 = Radius of the bottom of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// r2 = Radius of the top of the conical volume. Can be a scalar, or a list of sizes per axis.
|
|
// d1 = Diameter of the bottom of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// d2 = Diameter of the top of the conical volume. Can be a scalar, a list of sizes per axis.
|
|
// l/h = Length of the cylindrical, conical or extruded region volume along axis.
|
|
// vnf = The [VNF](vnf.scad) of the volume.
|
|
// region = The region to generate a shape from.
|
|
// extent = If true, calculate anchors by extents, rather than intersection. Default: true.
|
|
// cp = If given, specifies the centerpoint of the volume. Default: `[0,0,0]`
|
|
// offset = If given, offsets the perimeter of the volume around the centerpoint.
|
|
// anchors = If given as a list of anchor points, allows named anchor points.
|
|
// two_d = If true, the attachable shape is 2D. If false, 3D. Default: false (3D)
|
|
// axis = The vector pointing along the axis of a geometry. Default: UP
|
|
// override = Function that takes an anchor and returns a pair `[position,direction]` to use for that anchor to override the normal one. You can also supply a lookup table that is a list of `[anchor, [position, direction]]` entries. If the direction/position that is returned is undef then the default will be used.
|
|
//
|
|
// Example(NORENDER): Null/Point Shape
|
|
// geom = attach_geom();
|
|
//
|
|
// Example(NORENDER): Cubical Shape
|
|
// geom = attach_geom(size=size);
|
|
//
|
|
// Example(NORENDER): Prismoidal Shape
|
|
// geom = attach_geom(
|
|
// size=point3d(botsize,h),
|
|
// size2=topsize, shift=shift
|
|
// );
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, Z-Axis Aligned
|
|
// geom = attach_geom(r=r, h=h);
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, Y-Axis Aligned
|
|
// geom = attach_geom(r=r, h=h, axis=BACK);
|
|
//
|
|
// Example(NORENDER): Cylindrical Shape, X-Axis Aligned
|
|
// geom = attach_geom(r=r, h=h, axis=RIGHT);
|
|
//
|
|
// Example(NORENDER): Conical Shape, Z-Axis Aligned
|
|
// geom = attach_geom(r1=r1, r2=r2, h=h);
|
|
//
|
|
// Example(NORENDER): Conical Shape, Y-Axis Aligned
|
|
// geom = attach_geom(r1=r1, r2=r2, h=h, axis=BACK);
|
|
//
|
|
// Example(NORENDER): Conical Shape, X-Axis Aligned
|
|
// geom = attach_geom(r1=r1, r2=r2, h=h, axis=RIGHT);
|
|
//
|
|
// Example(NORENDER): Spherical Shape
|
|
// geom = attach_geom(r=r);
|
|
//
|
|
// Example(NORENDER): Ovoid Shape
|
|
// geom = attach_geom(r=[r_x, r_y, r_z]);
|
|
//
|
|
// Example(NORENDER): Arbitrary VNF Shape, Anchored by Extents
|
|
// geom = attach_geom(vnf=vnf);
|
|
//
|
|
// Example(NORENDER): Arbitrary VNF Shape, Anchored by Intersection
|
|
// geom = attach_geom(vnf=vnf, extent=false);
|
|
//
|
|
// Example(NORENDER): 2D Rectangular Shape
|
|
// geom = attach_geom(two_d=true, size=size);
|
|
//
|
|
// Example(NORENDER): 2D Trapezoidal Shape
|
|
// geom = attach_geom(two_d=true, size=[x1,y], size2=x2, shift=shift, override=override);
|
|
//
|
|
// Example(NORENDER): 2D Circular Shape
|
|
// geom = attach_geom(two_d=true, r=r);
|
|
//
|
|
// Example(NORENDER): 2D Oval Shape
|
|
// geom = attach_geom(two_d=true, r=[r_x, r_y]);
|
|
//
|
|
// Example(NORENDER): Arbitrary 2D Region Shape, Anchored by Extents
|
|
// geom = attach_geom(two_d=true, region=region);
|
|
//
|
|
// Example(NORENDER): Arbitrary 2D Region Shape, Anchored by Intersection
|
|
// geom = attach_geom(two_d=true, region=region, extent=false);
|
|
//
|
|
// Example(NORENDER): Extruded Region, Anchored by Extents
|
|
// geom = attach_geom(region=region, l=height);
|
|
//
|
|
// Example(NORENDER): Extruded Region, Anchored by Intersection
|
|
// geom = attach_geom(region=region, l=length, extent=false);
|
|
//
|
|
|
|
function _local_struct_val(struct, key)=
|
|
assert(is_def(key),"key is missing")
|
|
let(ind = search([key],struct)[0])
|
|
ind == [] ? undef : struct[ind][1];
|
|
|
|
|
|
function attach_geom(
|
|
size, size2,
|
|
shift, scale, twist,
|
|
r,r1,r2, d,d1,d2, l,h,
|
|
vnf, region,
|
|
extent=true,
|
|
cp=[0,0,0],
|
|
offset=[0,0,0],
|
|
anchors=[],
|
|
two_d=false,
|
|
axis=UP, override
|
|
) =
|
|
assert(is_bool(extent))
|
|
assert(is_vector(cp) || is_string(cp))
|
|
assert(is_vector(offset))
|
|
assert(is_list(anchors))
|
|
assert(is_bool(two_d))
|
|
assert(is_vector(axis))
|
|
!is_undef(size)? (
|
|
let(
|
|
over_f = is_undef(override) ? function(anchor) [undef,undef,undef]
|
|
: is_func(override) ? override
|
|
: function(anchor) _local_struct_val(override,anchor)
|
|
)
|
|
two_d? (
|
|
let(
|
|
size2 = default(size2, size.x),
|
|
shift = default(shift, 0)
|
|
)
|
|
assert(is_vector(size,2))
|
|
assert(is_num(size2))
|
|
assert(is_num(shift))
|
|
["trapezoid", point2d(size), size2, shift, over_f, cp, offset, anchors]
|
|
) : (
|
|
let(
|
|
size2 = default(size2, point2d(size)),
|
|
shift = default(shift, [0,0])
|
|
)
|
|
assert(is_vector(size,3))
|
|
assert(is_vector(size2,2))
|
|
assert(is_vector(shift,2))
|
|
["prismoid", size, size2, shift, axis, over_f, cp, offset, anchors]
|
|
)
|
|
) : !is_undef(vnf)? (
|
|
assert(is_vnf(vnf))
|
|
assert(two_d == false)
|
|
extent? ["vnf_extent", vnf, cp, offset, anchors] :
|
|
["vnf_isect", vnf, cp, offset, anchors]
|
|
) : !is_undef(region)? (
|
|
assert(is_region(region),2)
|
|
let( l = default(l, h) )
|
|
two_d==true
|
|
? assert(is_undef(l))
|
|
extent==true
|
|
? ["rgn_extent", region, cp, offset, anchors]
|
|
: ["rgn_isect", region, cp, offset, anchors]
|
|
: assert(is_finite(l))
|
|
let(
|
|
shift = default(shift, [0,0]),
|
|
scale = is_num(scale)? [scale,scale] : default(scale, [1,1]),
|
|
twist = default(twist, 0)
|
|
)
|
|
assert(is_vector(shift,2))
|
|
assert(is_vector(scale,2))
|
|
assert(is_num(twist))
|
|
extent==true
|
|
? ["extrusion_extent", region, l, twist, scale, shift, cp, offset, anchors]
|
|
: ["extrusion_isect", region, l, twist, scale, shift, cp, offset, anchors]
|
|
) :
|
|
let(
|
|
r1 = get_radius(r1=r1,d1=d1,r=r,d=d,dflt=undef)
|
|
)
|
|
!is_undef(r1)? (
|
|
let( l = default(l, h) )
|
|
!is_undef(l)? (
|
|
let(
|
|
shift = default(shift, [0,0]),
|
|
r2 = get_radius(r1=r2,d1=d2,r=r,d=d,dflt=undef)
|
|
)
|
|
assert(is_num(r1) || is_vector(r1,2))
|
|
assert(is_num(r2) || is_vector(r2,2))
|
|
assert(is_num(l))
|
|
assert(is_vector(shift,2))
|
|
["conoid", r1, r2, l, shift, axis, cp, offset, anchors]
|
|
) : (
|
|
two_d? (
|
|
assert(is_num(r1) || is_vector(r1,2))
|
|
["ellipse", r1, cp, offset, anchors]
|
|
) : (
|
|
assert(is_num(r1) || is_vector(r1,3))
|
|
["spheroid", r1, cp, offset, anchors]
|
|
)
|
|
)
|
|
) :
|
|
["point", cp, offset, anchors];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Attachment internal functions
|
|
|
|
|
|
/// Internal Function: _attach_geom_2d()
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Usage:
|
|
/// bool = _attach_geom_2d(geom);
|
|
/// Description:
|
|
/// Returns true if the given attachment geometry description is for a 2D shape.
|
|
function _attach_geom_2d(geom) =
|
|
let( type = geom[0] )
|
|
type == "trapezoid" || type == "ellipse" ||
|
|
type == "rgn_isect" || type == "rgn_extent";
|
|
|
|
|
|
/// Internal Function: _attach_geom_size()
|
|
/// Usage:
|
|
/// bounds = _attach_geom_size(geom);
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Description:
|
|
/// Returns the `[X,Y,Z]` bounding size for the given attachment geometry description.
|
|
function _attach_geom_size(geom) =
|
|
let( type = geom[0] )
|
|
type == "point"? [0,0,0] :
|
|
type == "prismoid"? ( //size, size2, shift, axis
|
|
let(
|
|
size=geom[1], size2=geom[2], shift=point2d(geom[3]),
|
|
maxx = max(size.x,size2.x),
|
|
maxy = max(size.y,size2.y),
|
|
z = size.z
|
|
) [maxx, maxy, z]
|
|
) : type == "conoid"? ( //r1, r2, l, shift
|
|
let(
|
|
r1=geom[1], r2=geom[2], l=geom[3],
|
|
shift=point2d(geom[4]), axis=point3d(geom[5]),
|
|
rx1 = default(r1[0],r1),
|
|
ry1 = default(r1[1],r1),
|
|
rx2 = default(r2[0],r2),
|
|
ry2 = default(r2[1],r2),
|
|
maxxr = max(rx1,rx2),
|
|
maxyr = max(ry1,ry2)
|
|
)
|
|
approx(axis,UP)? [2*maxxr,2*maxyr,l] :
|
|
approx(axis,RIGHT)? [l,2*maxyr,2*maxxr] :
|
|
approx(axis,BACK)? [2*maxxr,l,2*maxyr] :
|
|
[2*maxxr, 2*maxyr, l]
|
|
) : type == "spheroid"? ( //r
|
|
let( r=geom[1] )
|
|
is_num(r)? [2,2,2]*r : v_mul([2,2,2],point3d(r))
|
|
) : type == "vnf_extent" || type=="vnf_isect"? ( //vnf
|
|
let(
|
|
vnf = geom[1]
|
|
) vnf==EMPTY_VNF? [0,0,0] :
|
|
let(
|
|
mm = pointlist_bounds(geom[1][0]),
|
|
delt = mm[1]-mm[0]
|
|
) delt
|
|
) : type == "extrusion_isect" || type == "extrusion_extent"? ( //path, l
|
|
let(
|
|
mm = pointlist_bounds(flatten(geom[1])),
|
|
delt = mm[1]-mm[0]
|
|
) [delt.x, delt.y, geom[2]]
|
|
) : type == "trapezoid"? ( //size, size2
|
|
let(
|
|
size=geom[1], size2=geom[2], shift=geom[3],
|
|
maxx = max(size.x,size2+abs(shift))
|
|
) [maxx, size.y]
|
|
) : type == "ellipse"? ( //r
|
|
let( r=geom[1] )
|
|
is_num(r)? [2,2]*r : v_mul([2,2],point2d(r))
|
|
) : type == "rgn_isect" || type == "rgn_extent"? ( //path
|
|
let(
|
|
mm = pointlist_bounds(flatten(geom[1])),
|
|
delt = mm[1]-mm[0]
|
|
) [delt.x, delt.y]
|
|
) :
|
|
assert(false, "Unknown attachment geometry type.");
|
|
|
|
|
|
|
|
/// Internal Function: _attach_geom_edge_path()
|
|
/// Usage:
|
|
/// angle = _attach_geom_edge_path(geom, edge);
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Description:
|
|
/// Returns the path and post-transform matrix of the indicated edge.
|
|
/// If the edge is invalid for the geometry, returns `undef`.
|
|
function _attach_geom_edge_path(geom, edge) =
|
|
assert(is_vector(edge),str("Invalid edge: edge=",edge))
|
|
let(
|
|
type = geom[0],
|
|
cp = _get_cp(geom),
|
|
offset_raw = select(geom,-2),
|
|
offset = [for (i=[0:2]) edge[i]==0? 0 : offset_raw[i]], // prevents bad centering.
|
|
edge = point3d(edge)
|
|
)
|
|
type == "prismoid"? ( //size, size2, shift, axis
|
|
let(all_comps_good = [for (c=edge) if (c!=sign(c)) 1]==[])
|
|
assert(all_comps_good, "All components of an edge for a cuboid/prismoid must be -1, 0, or 1")
|
|
let(edge_good = len([for (c=edge) if(c) 1])==2)
|
|
assert(edge_good, "Invalid edge.")
|
|
let(
|
|
size = geom[1],
|
|
size2 = geom[2],
|
|
shift = point2d(geom[3]),
|
|
axis = point3d(geom[4]),
|
|
edge = rot(from=axis, to=UP, p=edge),
|
|
offset = rot(from=axis, to=UP, p=offset),
|
|
h = size.z,
|
|
cpos = function(vec) let(
|
|
u = (vec.z + 1) / 2,
|
|
siz = lerp(point2d(size), size2, u) / 2,
|
|
z = vec.z * h / 2,
|
|
pos = point3d(v_mul(siz, point2d(vec)) + shift * u, z)
|
|
) pos,
|
|
ep1 = cpos([for (c=edge) c? c : -1]),
|
|
ep2 = cpos([for (c=edge) c? c : 1]),
|
|
cp = (ep1 + ep2) / 2,
|
|
axy = point2d(edge),
|
|
bot = point3d(v_mul(point2d(size )/2, axy), -h/2),
|
|
top = point3d(v_mul(point2d(size2)/2, axy) + shift, h/2),
|
|
xang = atan2(h,(top-bot).x),
|
|
yang = atan2(h,(top-bot).y),
|
|
vecs = [
|
|
if (edge.x) yrot(90-xang, p=sign(axy.x)*RIGHT),
|
|
if (edge.y) xrot(yang-90, p=sign(axy.y)*BACK),
|
|
if (edge.z) [0,0,sign(edge.z)]
|
|
],
|
|
segvec = cross(unit(vecs[1]), unit(vecs[0])),
|
|
seglen = norm(ep2 - ep1),
|
|
path = [
|
|
cp - segvec * seglen/2,
|
|
cp + segvec * seglen/2
|
|
],
|
|
m = rot(from=UP,to=axis) * move(offset)
|
|
) [path, [vecs], m]
|
|
) : type == "conoid"? ( //r1, r2, l, shift, axis
|
|
assert(edge.z && edge.z == sign(edge.z), "The Z component of an edge for a cylinder/cone must be -1 or 1")
|
|
let(
|
|
rr1 = geom[1],
|
|
rr2 = geom[2],
|
|
l = geom[3],
|
|
shift = point2d(geom[4]),
|
|
axis = point3d(geom[5]),
|
|
r1 = is_num(rr1)? [rr1,rr1] : point2d(rr1),
|
|
r2 = is_num(rr2)? [rr2,rr2] : point2d(rr2),
|
|
edge = rot(from=axis, to=UP, p=edge),
|
|
offset = rot(from=axis, to=UP, p=offset),
|
|
maxr = max([each r1, each r2]),
|
|
sides = segs(maxr),
|
|
top = path3d(move(shift, p=ellipse(r=r2, $fn=sides)), l/2),
|
|
bot = path3d(ellipse(r=r1, $fn=sides), -l/2),
|
|
path = edge.z < 0 ? bot : top,
|
|
path2 = edge.z < 0 ? top : bot,
|
|
zed = edge.z<0? [0,0,-l/2] : point3d(shift,l/2),
|
|
vecs = [
|
|
for (i = idx(top)) let(
|
|
pt1 = (path[i] + select(path,i+1)) /2,
|
|
pt2 = (path2[i] + select(path2,i+1)) /2,
|
|
v1 = unit(zed - pt1),
|
|
v2 = unit(pt2 - pt1),
|
|
v3 = unit(cross(v1,v2)),
|
|
v4 = cross(v3,v2),
|
|
v5 = cross(v1,v3)
|
|
) [v4, v5]
|
|
],
|
|
m = rot(from=UP,to=axis) * move(offset)
|
|
) edge.z>0
|
|
? [reverse(list_wrap(path)), reverse(vecs), m]
|
|
: [list_wrap(path), vecs, m]
|
|
) : undef;
|
|
|
|
|
|
/// Internal Function: _attach_transform()
|
|
/// Usage: To Get a Transformation Matrix
|
|
/// mat = _attach_transform(anchor, spin, orient, geom);
|
|
/// Usage: To Transform Points, Paths, Patches, or VNFs
|
|
/// new_p = _attach_transform(anchor, spin, orient, geom, p);
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Description:
|
|
/// Returns the affine3d transformation matrix needed to `anchor`, `spin`, and `orient`
|
|
/// the given geometry `geom` shape into position.
|
|
/// Arguments:
|
|
/// anchor = Anchor point to translate to the origin `[0,0,0]`. See [anchor](attachments.scad#subsection-anchor). Default: `CENTER`
|
|
/// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#subsection-spin). Default: `0`
|
|
/// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#subsection-orient). Default: `UP`
|
|
/// geom = The geometry description of the shape.
|
|
/// p = If given as a VNF, path, or point, applies the affine3d transformation matrix to it and returns the result.
|
|
function _attach_transform(anchor, spin, orient, geom, p) =
|
|
assert(is_undef(anchor) || is_vector(anchor) || is_string(anchor), str("Got: ",anchor))
|
|
assert(is_undef(spin) || is_vector(spin,3) || is_num(spin), str("Got: ",spin))
|
|
assert(is_undef(orient) || is_vector(orient,3), str("Got: ",orient))
|
|
let(
|
|
anchor = default(anchor, CENTER),
|
|
spin = default(spin, 0),
|
|
orient = default(orient, UP),
|
|
two_d = _attach_geom_2d(geom),
|
|
m = ($attach_to != undef)? (
|
|
let(
|
|
anch = _find_anchor($attach_to, geom),
|
|
pos = anch[1]
|
|
)
|
|
two_d?
|
|
assert(is_num(spin))
|
|
affine3d_zrot(spin)
|
|
* rot(to=FWD, from=point3d(anch[2]))
|
|
* affine3d_translate(point3d(-pos))
|
|
:
|
|
assert(is_num(spin) || is_vector(spin,3))
|
|
let(
|
|
ang = vector_angle(anch[2], DOWN),
|
|
axis = vector_axis(anch[2], DOWN),
|
|
ang2 = (anch[2]==UP || anch[2]==DOWN)? 0 : 180-anch[3],
|
|
axis2 = rot(p=axis,[0,0,ang2])
|
|
)
|
|
affine3d_rot_by_axis(axis2,ang)
|
|
* (is_num(spin)? affine3d_zrot(ang2+spin)
|
|
: affine3d_zrot(spin.z) * affine3d_yrot(spin.y) * affine3d_xrot(spin.x)
|
|
* affine3d_zrot(ang2))
|
|
* affine3d_translate(point3d(-pos))
|
|
) : (
|
|
let(
|
|
pos = _find_anchor(anchor, geom)[1]
|
|
)
|
|
two_d?
|
|
assert(is_num(spin))
|
|
affine3d_zrot(spin) * affine3d_translate(point3d(-pos))
|
|
:
|
|
assert(is_num(spin) || is_vector(spin,3))
|
|
let(
|
|
axis = vector_axis(UP,orient),
|
|
ang = vector_angle(UP,orient)
|
|
)
|
|
affine3d_rot_by_axis(axis,ang)
|
|
* ( is_num(spin)? affine3d_zrot(spin)
|
|
: affine3d_zrot(spin.z) * affine3d_yrot(spin.y) * affine3d_xrot(spin.x))
|
|
* affine3d_translate(point3d(-pos))
|
|
)
|
|
)
|
|
is_undef(p)? m
|
|
: is_vnf(p) && p==EMPTY_VNF? p
|
|
: apply(m, p);
|
|
|
|
|
|
function _get_cp(geom) =
|
|
let(cp=select(geom,-3))
|
|
is_vector(cp) ? cp
|
|
: let(
|
|
type = in_list(geom[0],["vnf_extent","vnf_isect"]) ? "vnf"
|
|
: in_list(geom[0],["rgn_extent","rgn_isect"]) ? "path"
|
|
: in_list(geom[0],["extrusion_extent","extrusion_isect"]) ? "xpath"
|
|
: "other"
|
|
)
|
|
assert(type!="other", "Invalid cp value")
|
|
cp=="centroid" ? (
|
|
type=="vnf" && (len(geom[1][0])==0 || len(geom[1][1])==0) ? [0,0,0] :
|
|
[each centroid(geom[1]), if (type=="xpath") 0]
|
|
)
|
|
: let(points = type=="vnf"?geom[1][0]:flatten(force_region(geom[1])))
|
|
cp=="mean" ? [each mean(points), if (type=="xpath") 0]
|
|
: cp=="box" ?[each mean(pointlist_bounds(points)), if (type=="xpath") 0]
|
|
: assert(false,"Invalid cp specification");
|
|
|
|
|
|
function _get_cp(geom) =
|
|
let(cp=select(geom,-3))
|
|
is_vector(cp) ? cp
|
|
: let(
|
|
is_vnf = in_list(geom[0],["vnf_extent","vnf_isect"])
|
|
)
|
|
cp == "centroid" ? (
|
|
is_vnf && len(geom[1][1])==0
|
|
? [0,0,0]
|
|
: centroid(geom[1])
|
|
)
|
|
: let(points = is_vnf?geom[1][0]:flatten(force_region(geom[1])))
|
|
cp=="mean" ? mean(points)
|
|
: cp=="box" ? mean(pointlist_bounds(points))
|
|
: assert(false,"Invalid cp specification");
|
|
|
|
|
|
|
|
function _force_anchor_2d(anchor) =
|
|
assert(anchor.y==0 || anchor.z==0, "Anchor for a 2D shape cannot be fully 3D. It must have either Y or Z component equal to zero.")
|
|
anchor.y==0 ? [anchor.x,anchor.z] : point2d(anchor);
|
|
|
|
|
|
/// Internal Function: _find_anchor()
|
|
/// Usage:
|
|
/// anchorinfo = _find_anchor(anchor, geom);
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Description:
|
|
/// Calculates the anchor data for the given `anchor` vector or name, in the given attachment
|
|
/// geometry. Returns `[ANCHOR, POS, VEC, ANG]` where `ANCHOR` is the requested anchorname
|
|
/// or vector, `POS` is the anchor position, `VEC` is the direction vector of the anchor, and
|
|
/// `ANG` is the angle to align with around the rotation axis of th anchor direction vector.
|
|
/// Arguments:
|
|
/// anchor = Vector or named anchor string.
|
|
/// geom = The geometry description of the shape.
|
|
function _find_anchor(anchor, geom) =
|
|
is_string(anchor)? (
|
|
anchor=="origin"? [anchor, CENTER, UP, 0]
|
|
: let(
|
|
anchors = last(geom),
|
|
found = search([anchor], anchors, num_returns_per_match=1)[0]
|
|
)
|
|
assert(found!=[], str("Unknown anchor: ",anchor))
|
|
anchors[found]
|
|
) :
|
|
let(
|
|
cp = _get_cp(geom),
|
|
offset_raw = select(geom,-2),
|
|
offset = [for (i=[0:2]) anchor[i]==0? 0 : offset_raw[i]], // prevents bad centering.
|
|
type = geom[0]
|
|
)
|
|
assert(is_vector(anchor),str("Invalid anchor: anchor=",anchor))
|
|
let(
|
|
anchor = point3d(anchor),
|
|
oang = (
|
|
approx(point2d(anchor), [0,0])? 0 :
|
|
atan2(anchor.y, anchor.x)+90
|
|
)
|
|
)
|
|
type == "prismoid"? ( //size, size2, shift, axis
|
|
let(all_comps_good = [for (c=anchor) if (c!=sign(c)) 1]==[])
|
|
assert(all_comps_good, "All components of an anchor for a cuboid/prismoid must be -1, 0, or 1")
|
|
let(
|
|
size=geom[1], size2=geom[2],
|
|
shift=point2d(geom[3]), axis=point3d(geom[4]),
|
|
override = geom[5](anchor)
|
|
)
|
|
let(
|
|
size = [for (c = size) max(0,c)],
|
|
size2 = [for (c = size2) max(0,c)],
|
|
anch = rot(from=axis, to=UP, p=anchor),
|
|
offset = rot(from=axis, to=UP, p=offset),
|
|
h = size.z,
|
|
u = (anch.z + 1) / 2, // u is one of 0, 0.5, or 1
|
|
axy = point2d(anch),
|
|
bot = point3d(v_mul(point2d(size )/2, axy), -h/2),
|
|
top = point3d(v_mul(point2d(size2)/2, axy) + shift, h/2),
|
|
pos = point3d(cp) + lerp(bot,top,u) + offset,
|
|
vecs = anchor==CENTER? [UP]
|
|
: [
|
|
if (anch.x!=0) unit(rot(from=UP, to=[(top-bot).x,0,max(0.01,h)], p=[axy.x,0,0]), UP),
|
|
if (anch.y!=0) unit(rot(from=UP, to=[0,(top-bot).y,max(0.01,h)], p=[0,axy.y,0]), UP),
|
|
if (anch.z!=0) unit([0,0,anch.z],UP)
|
|
],
|
|
vec2 = anchor==CENTER? UP
|
|
: len(vecs)==1? unit(vecs[0],UP)
|
|
: len(vecs)==2? vector_bisect(vecs[0],vecs[1])
|
|
: let(
|
|
v1 = vector_bisect(vecs[0],vecs[2]),
|
|
v2 = vector_bisect(vecs[1],vecs[2]),
|
|
p1 = plane_from_normal(yrot(90,p=v1)),
|
|
p2 = plane_from_normal(xrot(-90,p=v2)),
|
|
line = plane_intersection(p1,p2),
|
|
v3 = unit(line[1]-line[0],UP) * anch.z
|
|
)
|
|
unit(v3,UP),
|
|
vec = default(override[1],rot(from=UP, to=axis, p=vec2)),
|
|
pos2 = default(override[0],rot(from=UP, to=axis, p=pos))
|
|
) [anchor, pos2, vec, default(override[2],oang)]
|
|
) : type == "conoid"? ( //r1, r2, l, shift
|
|
assert(anchor.z == sign(anchor.z), "The Z component of an anchor for a cylinder/cone must be -1, 0, or 1")
|
|
let(
|
|
rr1=geom[1], rr2=geom[2], l=geom[3],
|
|
shift=point2d(geom[4]), axis=point3d(geom[5]),
|
|
r1 = is_num(rr1)? [rr1,rr1] : point2d(rr1),
|
|
r2 = is_num(rr2)? [rr2,rr2] : point2d(rr2),
|
|
anch = rot(from=axis, to=UP, p=anchor),
|
|
offset = rot(from=axis, to=UP, p=offset),
|
|
u = (anch.z+1)/2,
|
|
axy = unit(point2d(anch),[0,0]),
|
|
bot = point3d(v_mul(r1,axy), -l/2),
|
|
top = point3d(v_mul(r2,axy)+shift, l/2),
|
|
pos = point3d(cp) + lerp(bot,top,u) + offset,
|
|
sidevec = rot(from=UP, to=top==bot?UP:top-bot, p=point3d(axy)),
|
|
vvec = anch==CENTER? UP : unit([0,0,anch.z],UP),
|
|
vec = anch==CENTER? CENTER :
|
|
approx(axy,[0,0])? unit(anch,UP) :
|
|
approx(anch.z,0)? sidevec :
|
|
unit((sidevec+vvec)/2,UP),
|
|
pos2 = rot(from=UP, to=axis, p=pos),
|
|
vec2 = anch==CENTER? UP : rot(from=UP, to=axis, p=vec)
|
|
) [anchor, pos2, vec2, oang]
|
|
) : type == "point"? (
|
|
let(
|
|
anchor = unit(point3d(anchor),CENTER),
|
|
pos = point3d(cp) + point3d(offset),
|
|
vec = unit(anchor,UP)
|
|
) [anchor, pos, vec, oang]
|
|
) : type == "spheroid"? ( //r
|
|
let(
|
|
rr = geom[1],
|
|
r = is_num(rr)? [rr,rr,rr] : point3d(rr),
|
|
anchor = unit(point3d(anchor),CENTER),
|
|
pos = point3d(cp) + v_mul(r,anchor) + point3d(offset),
|
|
vec = unit(v_mul(r,anchor),UP)
|
|
) [anchor, pos, vec, oang]
|
|
) : type == "vnf_isect"? ( //vnf
|
|
let( vnf=geom[1] )
|
|
approx(anchor,CTR)? [anchor, cp, UP, 0] : // CENTER anchors anchor on cp, "origin" anchors on [0,0]
|
|
vnf==EMPTY_VNF? [anchor, [0,0,0], unit(anchor), 0] :
|
|
let(
|
|
eps = 1/2048,
|
|
points = vnf[0],
|
|
faces = vnf[1],
|
|
rpts = apply(rot(from=anchor, to=RIGHT) * move(-cp), points),
|
|
hits = [
|
|
for (face = faces)
|
|
let(
|
|
verts = select(rpts, face),
|
|
ys = column(verts,1),
|
|
zs = column(verts,2)
|
|
)
|
|
if (max(ys) >= -eps && max(zs) >= -eps &&
|
|
min(ys) <= eps && min(zs) <= eps)
|
|
let(
|
|
poly = select(points, face),
|
|
isect = polygon_line_intersection(poly, [cp,cp+anchor], eps=eps),
|
|
ptlist = is_undef(isect) ? [] :
|
|
is_vector(isect) ? [isect]
|
|
: flatten(isect), // parallel to a face
|
|
n = len(ptlist)>0 ? polygon_normal(poly) : undef
|
|
)
|
|
for(pt=ptlist) [anchor * (pt-cp), n, pt]
|
|
]
|
|
)
|
|
assert(len(hits)>0, "Anchor vector does not intersect with the shape. Attachment failed.")
|
|
let(
|
|
furthest = max_index(column(hits,0)),
|
|
dist = hits[furthest][0],
|
|
pos = hits[furthest][2],
|
|
hitnorms = [for (hit = hits) if (approx(hit[0],dist,eps=eps)) hit[1]],
|
|
unorms = [
|
|
for (i = idx(hitnorms))
|
|
let(
|
|
thisnorm = hitnorms[i],
|
|
isdup = [
|
|
for (j = [i+1:1:len(hitnorms)-1])
|
|
if (approx(thisnorm, hitnorms[j])) 1
|
|
] != []
|
|
)
|
|
if (!isdup) thisnorm
|
|
],
|
|
n = unit(sum(unorms)),
|
|
oang = approx(point2d(n), [0,0])? 0 : atan2(n.y, n.x) + 90
|
|
)
|
|
[anchor, pos, n, oang]
|
|
) : type == "vnf_extent"? ( //vnf
|
|
let( vnf=geom[1] )
|
|
approx(anchor,CTR)? [anchor, cp, UP, 0] : // CENTER anchors anchor on cp, "origin" anchors on [0,0]
|
|
vnf==EMPTY_VNF? [anchor, [0,0,0], unit(anchor,UP), 0] :
|
|
let(
|
|
rpts = apply(rot(from=anchor, to=RIGHT) * move(point3d(-cp)), vnf[0]),
|
|
maxx = max(column(rpts,0)),
|
|
idxs = [for (i = idx(rpts)) if (approx(rpts[i].x, maxx)) i],
|
|
avep = sum(select(rpts,idxs))/len(idxs),
|
|
mpt = approx(point2d(anchor),[0,0])? [maxx,0,0] : avep,
|
|
pos = point3d(cp) + rot(from=RIGHT, to=anchor, p=mpt)
|
|
) [anchor, pos, anchor, oang]
|
|
) : type == "trapezoid"? ( //size, size2, shift, override
|
|
let(all_comps_good = [for (c=anchor) if (c!=sign(c)) 1]==[])
|
|
assert(all_comps_good, "All components of an anchor for a rectangle/trapezoid must be -1, 0, or 1")
|
|
let(
|
|
anchor=_force_anchor_2d(anchor),
|
|
size=geom[1], size2=geom[2], shift=geom[3],
|
|
u = (anchor.y+1)/2, // 0<=u<=1
|
|
frpt = [size.x/2*anchor.x, -size.y/2],
|
|
bkpt = [size2/2*anchor.x+shift, size.y/2],
|
|
override = geom[4](anchor),
|
|
pos = override[0] != undef? override[0] :
|
|
point2d(cp) + lerp(frpt, bkpt, u) + point2d(offset),
|
|
svec = approx(bkpt,frpt)? [anchor.x,0,0] :
|
|
point3d(line_normal(bkpt,frpt)*anchor.x),
|
|
vec = is_def(override[1]) ? override[1]
|
|
: anchor.y == 0? ( anchor.x == 0? BACK : svec )
|
|
: anchor.x == 0? [0,anchor.y,0]
|
|
: unit((svec + [0,anchor.y,0]) / 2, [0,anchor.y,0])
|
|
) [anchor, pos, vec, 0]
|
|
) : type == "ellipse"? ( //r
|
|
let(
|
|
anchor = unit(_force_anchor_2d(anchor),[0,0]),
|
|
r = force_list(geom[1],2),
|
|
pos = approx(anchor.x,0)
|
|
? [0,sign(anchor.y)*r.y]
|
|
: let(
|
|
m = anchor.y/anchor.x,
|
|
px = approx(min(r),0)? 0 :
|
|
sign(anchor.x) * sqrt(1/(1/sqr(r.x) + m*m/sqr(r.y)))
|
|
)
|
|
[px,m*px],
|
|
vec = approx(min(r),0)? (approx(norm(anchor),0)? BACK : anchor) :
|
|
unit([r.y/r.x*pos.x, r.x/r.y*pos.y],BACK)
|
|
) [anchor, point2d(cp+offset)+pos, vec, 0]
|
|
) : type == "rgn_isect"? ( //region
|
|
let(
|
|
anchor = _force_anchor_2d(anchor),
|
|
rgn = force_region(move(-point2d(cp), p=geom[1]))
|
|
)
|
|
approx(anchor,[0,0])? [anchor, cp, BACK, 0] : // CENTER anchors anchor on cp, "origin" anchors on [0,0]
|
|
let(
|
|
isects = [
|
|
for (path=rgn, t=triplet(path,true)) let(
|
|
seg1 = [t[0],t[1]],
|
|
seg2 = [t[1],t[2]],
|
|
isect = line_intersection([[0,0],anchor], seg1, RAY, SEGMENT),
|
|
n = is_undef(isect)? [0,1] :
|
|
!approx(isect, t[1])? line_normal(seg1) :
|
|
unit((line_normal(seg1)+line_normal(seg2))/2,[0,1]),
|
|
n2 = vector_angle(anchor,n)>90? -n : n
|
|
)
|
|
if(!is_undef(isect) && !approx(isect,t[0])) [norm(isect), isect, n2]
|
|
]
|
|
)
|
|
assert(len(isects)>0, "Anchor vector does not intersect with the shape. Attachment failed.")
|
|
let(
|
|
maxidx = max_index(column(isects,0)),
|
|
isect = isects[maxidx],
|
|
pos = point2d(cp) + isect[1],
|
|
vec = unit(isect[2],[0,1])
|
|
) [anchor, pos, vec, 0]
|
|
) : type == "rgn_extent"? ( //region
|
|
let( anchor = _force_anchor_2d(anchor) )
|
|
approx(anchor,[0,0])? [anchor, cp, BACK, 0] : // CENTER anchors anchor on cp, "origin" anchors on [0,0]
|
|
let(
|
|
rgn = force_region(geom[1]),
|
|
rpts = rot(from=anchor, to=RIGHT, p=flatten(rgn)),
|
|
maxx = max(column(rpts,0)),
|
|
ys = [for (pt=rpts) if (approx(pt.x, maxx)) pt.y],
|
|
midy = (min(ys)+max(ys))/2,
|
|
pos = rot(from=RIGHT, to=anchor, p=[maxx,midy])
|
|
) [anchor, pos, unit(anchor,BACK), 0]
|
|
) : type=="extrusion_extent" || type=="extrusion_isect" ? ( // extruded region
|
|
assert(in_list(anchor.z,[-1,0,1]), "The Z component of an anchor for an extruded 2D shape must be -1, 0, or 1.")
|
|
let(
|
|
anchor_xy = point2d(anchor),
|
|
rgn = geom[1],
|
|
L = geom[2],
|
|
twist = geom[3],
|
|
scale = geom[4],
|
|
shift = geom[5],
|
|
u = (anchor.z + 1) / 2,
|
|
shmat = move(lerp([0,0], shift, u)),
|
|
scmat = scale(lerp([1,1], scale, u)),
|
|
twmat = zrot(lerp(0, -twist, u)),
|
|
mat = shmat * scmat * twmat
|
|
)
|
|
approx(anchor_xy,[0,0]) ? [anchor, apply(mat, point3d(cp,anchor.z*L/2)), unit(anchor, UP), oang] :
|
|
let(
|
|
newrgn = apply(mat, rgn),
|
|
newgeom = attach_geom(two_d=true, region=newrgn, extent=type=="extrusion_extent", cp=cp),
|
|
topmat = anchor.z!=0 ? []
|
|
: move(shift)*scale(scale)*zrot(-twist),
|
|
topgeom = anchor.z!=0? []
|
|
: attach_geom(two_d=true, region=apply(topmat,rgn), extent=type=="extrusion_extent", cp=cp),
|
|
top2d = anchor.z!=0? []
|
|
: _find_anchor(anchor_xy, topgeom),
|
|
result2d = _find_anchor(anchor_xy, newgeom),
|
|
pos = point3d(result2d[1], anchor.z*L/2),
|
|
vec = anchor.z==0? rot(from=UP,to=point3d(top2d[1],L/2)-point3d(result2d[1]),p=point3d(result2d[2]))
|
|
: unit(point3d(result2d[2], anchor.z),UP),
|
|
oang = atan2(vec.y,vec.x) + 90
|
|
)
|
|
[anchor, pos, vec, oang]
|
|
) :
|
|
assert(false, "Unknown attachment geometry type.");
|
|
|
|
|
|
/// Internal Function: _is_shown()
|
|
/// Usage:
|
|
/// bool = _is_shown();
|
|
/// Topics: Attachments
|
|
/// See Also: reorient(), attachable()
|
|
/// Description:
|
|
/// Returns true if objects should currently be shown based on the tag settings.
|
|
function _is_shown() =
|
|
assert(is_list($tags_shown) || $tags_shown=="ALL")
|
|
assert(is_list($tags_hidden))
|
|
let(
|
|
dummy=is_undef($tags) ? 0 : echo("Use tag() instead of $tags for specifying an object's tag."),
|
|
$tag = default($tag,$tags)
|
|
)
|
|
assert(is_string($tag), str("Tag value (",$tag,") is not a string"))
|
|
assert(undef==str_find($tag," "),str("Tag string \"",$tag,"\" contains a space, which is not allowed"))
|
|
let(
|
|
shown = $tags_shown=="ALL" || in_list($tag,$tags_shown),
|
|
hidden = in_list($tag, $tags_hidden)
|
|
)
|
|
shown && !hidden;
|
|
|
|
|
|
// Section: Visualizing Anchors
|
|
|
|
/// Internal Function: _standard_anchors()
|
|
/// Usage:
|
|
/// anchs = _standard_anchors([two_d]);
|
|
/// Description:
|
|
/// Return the vectors for all standard anchors.
|
|
/// Arguments:
|
|
/// two_d = If true, returns only the anchors where the Z component is 0. Default: false
|
|
function _standard_anchors(two_d=false) = [
|
|
for (
|
|
zv = [
|
|
if (!two_d) TOP,
|
|
CENTER,
|
|
if (!two_d) BOTTOM
|
|
],
|
|
yv = [FRONT, CENTER, BACK],
|
|
xv = [LEFT, CENTER, RIGHT]
|
|
) xv+yv+zv
|
|
];
|
|
|
|
|
|
|
|
// Module: show_anchors()
|
|
// Synopsis: Shows anchors for the parent object.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: expose_anchors(), anchor_arrow(), anchor_arrow2d(), frame_ref()
|
|
// Usage:
|
|
// PARENT() show_anchors([s], [std=], [custom=]);
|
|
// Description:
|
|
// Show all standard anchors for the parent object.
|
|
// Arguments:
|
|
// s = Length of anchor arrows.
|
|
// ---
|
|
// std = If true show standard anchors. Default: true
|
|
// custom = If true show named anchors. Default: true
|
|
// Example(FlatSpin,VPD=333):
|
|
// cube(50, center=true) show_anchors();
|
|
module show_anchors(s=10, std=true, custom=true) {
|
|
check = assert($parent_geom != undef);
|
|
two_d = _attach_geom_2d($parent_geom);
|
|
if (std) {
|
|
for (anchor=_standard_anchors(two_d=two_d)) {
|
|
if(two_d) {
|
|
attach(anchor) anchor_arrow2d(s);
|
|
} else {
|
|
attach(anchor) anchor_arrow(s);
|
|
}
|
|
}
|
|
}
|
|
if (custom) {
|
|
for (anchor=last($parent_geom)) {
|
|
attach(anchor[0]) {
|
|
if(two_d) {
|
|
anchor_arrow2d(s, color="cyan");
|
|
} else {
|
|
anchor_arrow(s, color="cyan");
|
|
}
|
|
color("black")
|
|
tag("anchor-arrow") {
|
|
xrot(two_d? 0 : 90) {
|
|
back(s/3) {
|
|
yrot_copies(n=2)
|
|
up(two_d? 0.51 : s/30) {
|
|
linear_extrude(height=0.01, convexity=12, center=true) {
|
|
text(text=anchor[0], size=s/4, halign="center", valign="center", font="Helvetica", $fn=36);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
color([1, 1, 1, 1])
|
|
tag("anchor-arrow") {
|
|
xrot(two_d? 0 : 90) {
|
|
back(s/3) {
|
|
cube([s/4.5*len(anchor[0]), s/3, 0.01], center=true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
children();
|
|
}
|
|
|
|
|
|
// Module: anchor_arrow()
|
|
// Synopsis: Shows a 3d anchor orientation arrow.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: anchor_arrow2d(), show_anchors(), expose_anchors(), frame_ref(), generic_airplane()
|
|
// Usage:
|
|
// anchor_arrow([s], [color], [flag], [anchor=], [orient=], [spin=]) [ATTACHMENTS];
|
|
// Description:
|
|
// Show an anchor orientation arrow. By default, tagged with the name "anchor-arrow".
|
|
// Arguments:
|
|
// s = Length of the arrows. Default: `10`
|
|
// color = Color of the arrow. Default: `[0.333, 0.333, 1]`
|
|
// flag = If true, draw the orientation flag on the arrowhead. Default: true
|
|
// ---
|
|
// anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#subsection-anchor). Default: `CENTER`
|
|
// spin = Rotate this many degrees around the Z axis after anchor. See [spin](attachments.scad#subsection-spin). Default: `0`
|
|
// orient = Vector to rotate top towards, after spin. See [orient](attachments.scad#subsection-orient). Default: `UP`
|
|
// Example:
|
|
// anchor_arrow(s=20);
|
|
module anchor_arrow(s=10, color=[0.333,0.333,1], flag=true, $tag="anchor-arrow", $fn=12, anchor=BOT, spin=0, orient=UP) {
|
|
attachable(anchor,spin,orient, r=s/6, l=s) {
|
|
down(s/2)
|
|
recolor("gray") spheroid(d=s/6) {
|
|
attach(CENTER,BOT) recolor(color) cyl(h=s*2/3, d=s/15) {
|
|
attach(TOP,BOT) cyl(h=s/3, d1=s/5, d2=0) {
|
|
if(flag) {
|
|
position(BOT)
|
|
recolor([1,0.5,0.5])
|
|
cuboid([s/100, s/6, s/4], anchor=FRONT+BOT);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
children();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Module: anchor_arrow2d()
|
|
// Synopsis: Shows a 2d anchor orientation arrow.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
|
// Usage:
|
|
// anchor_arrow2d([s], [color]);
|
|
// Description:
|
|
// Show an anchor orientation arrow.
|
|
// Arguments:
|
|
// s = Length of the arrows.
|
|
// color = Color of the arrow.
|
|
// Example:
|
|
// anchor_arrow2d(s=20);
|
|
module anchor_arrow2d(s=15, color=[0.333,0.333,1], $tag="anchor-arrow") {
|
|
color(color) stroke([[0,0],[0,s]], width=s/10, endcap1="butt", endcap2="arrow2");
|
|
}
|
|
|
|
|
|
|
|
// Module: expose_anchors()
|
|
// Synopsis: Used to show a transparent object with solid color anchor arrows.
|
|
// Topics: Attachments
|
|
// See Also: anchor_arrow2d(), show_anchors(), show_anchors(), frame_ref()
|
|
// Usage:
|
|
// expose_anchors(opacity) {child1() show_anchors(); child2() show_anchors(); ...}
|
|
// Description:
|
|
// Used in combination with show_anchors() to display an object in transparent gray with its anchors in solid color.
|
|
// Children will appear transparent and any anchor arrows drawn with will appear in solid color.
|
|
// Arguments:
|
|
// opacity = The opacity of the children. 0.0 is invisible, 1.0 is opaque. Default: 0.2
|
|
// Example(FlatSpin,VPD=333):
|
|
// expose_anchors() cube(50, center=true) show_anchors();
|
|
module expose_anchors(opacity=0.2) {
|
|
show_only("anchor-arrow")
|
|
children();
|
|
hide("anchor-arrow")
|
|
color(is_undef($color) || $color=="default" ? [0,0,0] :
|
|
is_string($color) ? $color
|
|
: point3d($color),
|
|
opacity)
|
|
children();
|
|
}
|
|
|
|
|
|
|
|
// Module: show_transform_list()
|
|
// Synopsis: Shows a list of transforms and how they connect.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: generic_airplane(), anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
|
// Usage:
|
|
// show_transform_list(tlist, [s]);
|
|
// show_transform_list(tlist) {CHILDREN};
|
|
// Description:
|
|
// Given a list of transformation matrices, shows the position and orientation of each one.
|
|
// A line is drawn from each transform position to the next one, and an orientation indicator is
|
|
// shown at each position. If a child is passed, that child will be used as the orientation indicator.
|
|
// By default, a {{generic_airplane()}} is used as the orientation indicator.
|
|
// Arguments:
|
|
// s = Length of the {{generic_airplane()}}. Default: 5
|
|
// Example:
|
|
// tlist = [
|
|
// zrot(90),
|
|
// zrot(90) * fwd(30) * zrot(30),
|
|
// zrot(90) * fwd(30) * zrot(30) *
|
|
// fwd(35) * xrot(-30),
|
|
// zrot(90) * fwd(30) * zrot(30) *
|
|
// fwd(35) * xrot(-30) * fwd(40) * yrot(15),
|
|
// ];
|
|
// show_transform_list(tlist, s=20);
|
|
// Example:
|
|
// tlist = [
|
|
// zrot(90),
|
|
// zrot(90) * fwd(30) * zrot(30),
|
|
// zrot(90) * fwd(30) * zrot(30) *
|
|
// fwd(35) * xrot(-30),
|
|
// zrot(90) * fwd(30) * zrot(30) *
|
|
// fwd(35) * xrot(-30) * fwd(40) * yrot(15),
|
|
// ];
|
|
// show_transform_list(tlist) frame_ref();
|
|
module show_transform_list(tlist, s=5) {
|
|
path = [for (m = tlist) apply(m, [0,0,0])];
|
|
stroke(path, width=s*0.03);
|
|
for (m = tlist) {
|
|
multmatrix(m) {
|
|
if ($children>0) children();
|
|
else generic_airplane(s=s);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Module: generic_airplane()
|
|
// Synopsis: Shows a generic airplane shape, useful for viewing orientations.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
|
// Usage:
|
|
// generic_airplane([s]);
|
|
// Description:
|
|
// Creates a generic airplane shape. This can be useful for viewing the orientation of 3D transforms.
|
|
// Arguments:
|
|
// s = Length of the airplane. Default: 5
|
|
// Example:
|
|
// generic_airplane(s=20);
|
|
module generic_airplane(s=5) {
|
|
$fn = max(segs(0.05*s), 12);
|
|
color("#ddd")
|
|
fwd(s*0.05)
|
|
ycyl(l=0.7*s, d=0.1*s) {
|
|
attach(FWD) top_half(s=s) zscale(2) sphere(d=0.1*s);
|
|
attach(BACK,FWD) ycyl(l=0.2*s, d1=0.1*s, d2=0.05*s) {
|
|
yrot_copies([-90,0,90])
|
|
prismoid(s*[0.01,0.2], s*[0.01,0.05],
|
|
h=0.2*s, shift=s*[0,0.15], anchor=BOT);
|
|
}
|
|
yrot_copies([-90,90])
|
|
prismoid(s*[0.01,0.2], s*[0.01,0.05],
|
|
h=0.5*s, shift=s*[0,0.15], anchor=BOT);
|
|
}
|
|
color("#777") zcopies(0.1*s) sphere(d=0.02*s);
|
|
back(0.09*s) {
|
|
color("#f00") right(0.46*s) sphere(d=0.04*s);
|
|
color("#0f0") left(0.46*s) sphere(d=0.04*s);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Module: frame_ref()
|
|
// Synopsis: Shows axis orientation arrows.
|
|
// SynTags: Geom
|
|
// Topics: Attachments
|
|
// See Also: anchor_arrow(), anchor_arrow2d(), show_anchors(), expose_anchors()
|
|
// Usage:
|
|
// frame_ref(s, opacity);
|
|
// Description:
|
|
// Displays X,Y,Z axis arrows in red, green, and blue respectively.
|
|
// Arguments:
|
|
// s = Length of the arrows.
|
|
// opacity = The opacity of the arrows. 0.0 is invisible, 1.0 is opaque. Default: 1.0
|
|
// Examples:
|
|
// frame_ref(25);
|
|
// frame_ref(30, opacity=0.5);
|
|
module frame_ref(s=15, opacity=1) {
|
|
cube(0.01, center=true) {
|
|
attach([1,0,0]) anchor_arrow(s=s, flag=false, color=[1.0, 0.3, 0.3, opacity]);
|
|
attach([0,1,0]) anchor_arrow(s=s, flag=false, color=[0.3, 1.0, 0.3, opacity]);
|
|
attach([0,0,1]) anchor_arrow(s=s, flag=false, color=[0.3, 0.3, 1.0, opacity]);
|
|
children();
|
|
}
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
///
|
|
/// Code after this is internal code for managing edge and corner sets and for displaying
|
|
/// edge and corners in the docs
|
|
///
|
|
|
|
module _edges_text3d(txt,size=3) {
|
|
if (is_list(txt)) {
|
|
for (i=idx(txt)) {
|
|
down((i-len(txt)/2+0.5)*size*1.5) {
|
|
_edges_text3d(txt[i], size=size);
|
|
}
|
|
}
|
|
} else {
|
|
xrot(90) color("#000")
|
|
linear_extrude(height=0.1) {
|
|
text(text=txt, size=size, halign="center", valign="center");
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function _edges_vec_txt(x) = is_string(x)? str("\"", x, "\"") :
|
|
assert(is_string(x) || is_vector(x,3), str(x))
|
|
let(
|
|
lst = concat(
|
|
x.z>0? ["TOP"] : x.z<0? ["BOT"] : [],
|
|
x.y>0? ["BACK"] : x.y<0? ["FWD"] : [],
|
|
x.x>0? ["RIGHT"] : x.x<0? ["LEFT"] : []
|
|
),
|
|
out = [
|
|
for (i = idx(lst))
|
|
i>0? str("+",lst[i]) : lst[i]
|
|
]
|
|
) out;
|
|
|
|
|
|
function _edges_text(edges) =
|
|
is_string(edges) ? [str("\"",edges,"\"")] :
|
|
edges==EDGES_NONE ? ["EDGES_NONE"] :
|
|
edges==EDGES_ALL ? ["EDGES_ALL"] :
|
|
_is_edge_array(edges) ? [""] :
|
|
is_vector(edges,3) ? _edges_vec_txt(edges) :
|
|
is_list(edges) ? let(
|
|
lst = [for (x=edges) each _edges_text(x)],
|
|
out = [
|
|
for (i=idx(lst))
|
|
str(
|
|
(i==0? "[" : ""),
|
|
lst[i],
|
|
(i<len(lst)-1? "," : ""),
|
|
(i==len(lst)-1? "]" : "")
|
|
)
|
|
]
|
|
) out :
|
|
[""];
|
|
|
|
|
|
|
|
/// Internal Constant: EDGES_NONE
|
|
/// Topics: Edges
|
|
/// See Also: EDGES_ALL, edges()
|
|
/// Description:
|
|
/// The set of no edges.
|
|
/// Figure(3D):
|
|
/// _show_edges(edges="NONE");
|
|
EDGES_NONE = [[0,0,0,0], [0,0,0,0], [0,0,0,0]];
|
|
|
|
|
|
/// Internal Constant: EDGES_ALL
|
|
/// Topics: Edges
|
|
/// See Also: EDGES_NONE, edges()
|
|
/// Description:
|
|
/// The set of all edges.
|
|
/// Figure(3D):
|
|
/// _show_edges(edges="ALL");
|
|
EDGES_ALL = [[1,1,1,1], [1,1,1,1], [1,1,1,1]];
|
|
|
|
|
|
/// Internal Constant: EDGES_OFFSETS
|
|
/// Topics: Edges
|
|
/// See Also: EDGES_NONE, EDGES_ALL, edges()
|
|
/// Description:
|
|
/// The vectors pointing to the center of each edge of a unit sized cube.
|
|
/// Each item in an edge array will have a corresponding vector in this array.
|
|
EDGE_OFFSETS = [
|
|
[
|
|
[ 0,-1,-1],
|
|
[ 0, 1,-1],
|
|
[ 0,-1, 1],
|
|
[ 0, 1, 1]
|
|
], [
|
|
[-1, 0,-1],
|
|
[ 1, 0,-1],
|
|
[-1, 0, 1],
|
|
[ 1, 0, 1]
|
|
], [
|
|
[-1,-1, 0],
|
|
[ 1,-1, 0],
|
|
[-1, 1, 0],
|
|
[ 1, 1, 0]
|
|
]
|
|
];
|
|
|
|
|
|
|
|
/// Internal Function: _is_edge_array()
|
|
/// Topics: Edges, Type Checking
|
|
/// Usage:
|
|
/// bool = _is_edge_array(x);
|
|
/// Description:
|
|
/// Returns true if the given value has the form of an edge array.
|
|
/// Arguments:
|
|
/// x = The item to check the type of.
|
|
/// See Also: edges(), EDGES_NONE, EDGES_ALL
|
|
function _is_edge_array(x) = is_list(x) && is_vector(x[0]) && len(x)==3 && len(x[0])==4;
|
|
|
|
|
|
function _edge_set(v) =
|
|
_is_edge_array(v)? v : [
|
|
for (ax=[0:2]) [
|
|
for (b=[-1,1], a=[-1,1]) let(
|
|
v2=[[0,a,b],[a,0,b],[a,b,0]][ax]
|
|
) (
|
|
is_string(v)? (
|
|
v=="X"? (ax==0) : // Return all X axis aligned edges.
|
|
v=="Y"? (ax==1) : // Return all Y axis aligned edges.
|
|
v=="Z"? (ax==2) : // Return all Z axis aligned edges.
|
|
v=="ALL"? true : // Return all edges.
|
|
v=="NONE"? false : // Return no edges.
|
|
let(valid_values = ["X", "Y", "Z", "ALL", "NONE"])
|
|
assert(
|
|
in_list(v, valid_values),
|
|
str(v, " must be a vector, edge array, or one of ", valid_values)
|
|
) v
|
|
) :
|
|
let(nonz = sum(v_abs(v)))
|
|
nonz==2? (v==v2) : // Edge: return matching edge.
|
|
let(
|
|
matches = num_true([
|
|
for (i=[0:2]) v[i] && (v[i]==v2[i])
|
|
])
|
|
)
|
|
nonz==1? (matches==1) : // Face: return surrounding edges.
|
|
(matches==2) // Corner: return touching edges.
|
|
)? 1 : 0
|
|
]
|
|
];
|
|
|
|
|
|
/// Internal Function: _normalize_edges()
|
|
/// Topics: Edges
|
|
/// Usage:
|
|
/// edges = _normalize_edges(v);
|
|
/// Description:
|
|
/// Normalizes all values in an edge array to be `1`, if it was originally greater than `0`,
|
|
/// or `0`, if it was originally less than or equal to `0`.
|
|
/// See Also: edges(), EDGES_NONE, EDGES_ALL
|
|
function _normalize_edges(v) = [for (ax=v) [for (edge=ax) edge>0? 1 : 0]];
|
|
|
|
|
|
|
|
|
|
/// Internal Function: _edges()
|
|
/// Topics: Edges
|
|
/// Usage:
|
|
/// edgs = _edges(v);
|
|
/// edgs = _edges(v, except);
|
|
///
|
|
/// Description:
|
|
/// Takes a list of edge set descriptors, and returns a normalized edges array
|
|
/// that represents all those given edges.
|
|
/// Arguments:
|
|
/// v = The edge set to include.
|
|
/// except = The edge set to specifically exclude, even if they are in `v`.
|
|
///
|
|
/// See Also: EDGES_NONE, EDGES_ALL
|
|
///
|
|
function _edges(v, except=[]) =
|
|
v==[] ? EDGES_NONE :
|
|
(is_string(v) || is_vector(v) || _is_edge_array(v))? _edges([v], except=except) :
|
|
(is_string(except) || is_vector(except) || _is_edge_array(except))? _edges(v, except=[except]) :
|
|
except==[]? _normalize_edges(sum([for (x=v) _edge_set(x)])) :
|
|
_normalize_edges(
|
|
_normalize_edges(sum([for (x=v) _edge_set(x)])) -
|
|
sum([for (x=except) _edge_set(x)])
|
|
);
|
|
|
|
|
|
/// Internal Module: _show_edges()
|
|
/// Topics: Edges, Debugging
|
|
/// Usage:
|
|
/// _show_edges(edges, [size=], [text=], [txtsize=]);
|
|
/// Description:
|
|
/// Draws a semi-transparent cube with the given edges highlighted in red.
|
|
/// Arguments:
|
|
/// edges = The edges to highlight.
|
|
/// size = The scalar size of the cube.
|
|
/// text = The text to show on the front of the cube.
|
|
/// txtsize = The size of the text.
|
|
/// See Also: _edges(), EDGES_NONE, EDGES_ALL
|
|
/// Example:
|
|
/// _show_edges(size=30, edges=["X","Y"]);
|
|
module _show_edges(edges="ALL", size=20, text, txtsize=3,toplabel) {
|
|
edge_set = _edges(edges);
|
|
text = !is_undef(text) ? text : _edges_text(edges);
|
|
color("red") {
|
|
for (axis=[0:2], i=[0:3]) {
|
|
if (edge_set[axis][i] > 0) {
|
|
translate(EDGE_OFFSETS[axis][i]*size/2) {
|
|
if (axis==0) xcyl(h=size, d=2);
|
|
if (axis==1) ycyl(h=size, d=2);
|
|
if (axis==2) zcyl(h=size, d=2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
fwd(size/2) _edges_text3d(text, size=txtsize);
|
|
color("yellow",0.7) cuboid(size=size);
|
|
vpr = [55,0,25];
|
|
color("black")
|
|
if (is_def(toplabel))
|
|
for(h=idx(toplabel)) up(21+6*h)rot(vpr) text3d(select(toplabel,-h-1),size=3.3,h=0.1,orient=UP,anchor=FRONT);
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Internal Constant: CORNERS_NONE
|
|
/// Topics: Corners
|
|
/// Description:
|
|
/// The set of no corners.
|
|
/// Figure(3D):
|
|
/// _show_corners(corners="NONE");
|
|
/// See Also: CORNERS_ALL, corners()
|
|
CORNERS_NONE = [0,0,0,0,0,0,0,0]; // No corners.
|
|
|
|
|
|
/// Internal Constant: CORNERS_ALL
|
|
/// Topics: Corners
|
|
/// Description:
|
|
/// The set of all corners.
|
|
/// Figure(3D):
|
|
/// _show_corners(corners="ALL");
|
|
/// See Also: CORNERS_NONE, _corners()
|
|
CORNERS_ALL = [1,1,1,1,1,1,1,1];
|
|
|
|
|
|
/// Internal Constant: CORNER_OFFSETS
|
|
/// Topics: Corners
|
|
/// Description:
|
|
/// The vectors pointing to each corner of a unit sized cube.
|
|
/// Each item in a corner array will have a corresponding vector in this array.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, _corners()
|
|
CORNER_OFFSETS = [
|
|
[-1,-1,-1], [ 1,-1,-1], [-1, 1,-1], [ 1, 1,-1],
|
|
[-1,-1, 1], [ 1,-1, 1], [-1, 1, 1], [ 1, 1, 1]
|
|
];
|
|
|
|
|
|
|
|
|
|
/// Internal Function: _is_corner_array()
|
|
/// Topics: Corners, Type Checking
|
|
/// Usage:
|
|
/// bool = _is_corner_array(x)
|
|
/// Description:
|
|
/// Returns true if the given value has the form of a corner array.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, _corners()
|
|
function _is_corner_array(x) = is_vector(x) && len(x)==8 && all([for (xx=x) xx==1||xx==0]);
|
|
|
|
|
|
/// Internal Function: _normalize_corners()
|
|
/// Topics: Corners
|
|
/// Usage:
|
|
/// corns = _normalize_corners(v);
|
|
/// Description:
|
|
/// Normalizes all values in a corner array to be `1`, if it was originally greater than `0`,
|
|
/// or `0`, if it was originally less than or equal to `0`.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, _corners()
|
|
function _normalize_corners(v) = [for (x=v) x>0? 1 : 0];
|
|
|
|
|
|
function _corner_set(v) =
|
|
_is_corner_array(v)? v : [
|
|
for (i=[0:7]) let(
|
|
v2 = CORNER_OFFSETS[i]
|
|
) (
|
|
is_string(v)? (
|
|
v=="ALL"? true : // Return all corners.
|
|
v=="NONE"? false : // Return no corners.
|
|
let(valid_values = ["ALL", "NONE"])
|
|
assert(
|
|
in_list(v, valid_values),
|
|
str(v, " must be a vector, corner array, or one of ", valid_values)
|
|
) v
|
|
) :
|
|
all([for (i=[0:2]) !v[i] || (v[i]==v2[i])])
|
|
)? 1 : 0
|
|
];
|
|
|
|
|
|
/// Function: _corners()
|
|
/// Topics: Corners
|
|
/// Usage:
|
|
/// corns = _corners(v);
|
|
/// corns = _corners(v, except);
|
|
/// Description:
|
|
/// Takes a list of corner set descriptors, and returns a normalized corners array
|
|
/// that represents all those given corners. If the `except` argument is given
|
|
/// a list of corner set descriptors, then all those corners will be removed
|
|
/// from the returned corners array. If either argument only has a single corner
|
|
/// set descriptor, you do not have to pass it in a list.
|
|
function _corners(v, except=[]) =
|
|
v==[] ? CORNERS_NONE :
|
|
(is_string(v) || is_vector(v) || _is_corner_array(v))? _corners([v], except=except) :
|
|
(is_string(except) || is_vector(except) || _is_corner_array(except))? _corners(v, except=[except]) :
|
|
except==[]? _normalize_corners(sum([for (x=v) _corner_set(x)])) :
|
|
let(
|
|
a = _normalize_corners(sum([for (x=v) _corner_set(x)])),
|
|
b = _normalize_corners(sum([for (x=except) _corner_set(x)]))
|
|
) _normalize_corners(a - b);
|
|
|
|
|
|
/// Internal Function: _corner_edges()
|
|
/// Topics: Corners
|
|
/// Description:
|
|
/// Returns [XCOUNT,YCOUNT,ZCOUNT] where each is the count of edges aligned with that
|
|
/// axis that are in the edge set and touch the given corner.
|
|
/// Arguments:
|
|
/// edges = Standard edges array.
|
|
/// v = Vector pointing to the corner to count edge intersections at.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, _corners()
|
|
function _corner_edges(edges, v) =
|
|
let(u = (v+[1,1,1])/2) [edges[0][u.y+u.z*2], edges[1][u.x+u.z*2], edges[2][u.x+u.y*2]];
|
|
|
|
|
|
/// InternalFunction: _corner_edge_count()
|
|
/// Topics: Corners
|
|
/// Description:
|
|
/// Counts how many given edges intersect at a specific corner.
|
|
/// Arguments:
|
|
/// edges = Standard edges array.
|
|
/// v = Vector pointing to the corner to count edge intersections at.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, _corners()
|
|
function _corner_edge_count(edges, v) =
|
|
let(u = (v+[1,1,1])/2) edges[0][u.y+u.z*2] + edges[1][u.x+u.z*2] + edges[2][u.x+u.y*2];
|
|
|
|
|
|
function _corners_text(corners) =
|
|
is_string(corners) ? [str("\"",corners,"\"")] :
|
|
corners==CORNERS_NONE ? ["CORNERS_NONE"] :
|
|
corners==CORNERS_ALL ? ["CORNERS_ALL"] :
|
|
_is_corner_array(corners) ? [""] :
|
|
is_vector(corners,3) ? _edges_vec_txt(corners) :
|
|
is_list(corners) ? let(
|
|
lst = [for (x=corners) each _corners_text(x)],
|
|
out = [
|
|
for (i=idx(lst))
|
|
str(
|
|
(i==0? "[" : ""),
|
|
lst[i],
|
|
(i<len(lst)-1? "," : ""),
|
|
(i==len(lst)-1? "]" : "")
|
|
)
|
|
]
|
|
) out :
|
|
[""];
|
|
|
|
|
|
/// Internal Module: _show_corners()
|
|
/// Topics: Corners, Debugging
|
|
/// Usage:
|
|
/// _show_corners(corners, [size=], [text=], [txtsize=]);
|
|
/// Description:
|
|
/// Draws a semi-transparent cube with the given corners highlighted in red.
|
|
/// Arguments:
|
|
/// corners = The corners to highlight.
|
|
/// size = The scalar size of the cube.
|
|
/// text = If given, overrides the text to be shown on the front of the cube.
|
|
/// txtsize = The size of the text.
|
|
/// See Also: CORNERS_NONE, CORNERS_ALL, corners()
|
|
/// Example:
|
|
/// _show_corners(corners=FWD+RIGHT, size=30);
|
|
module _show_corners(corners="ALL", size=20, text, txtsize=3,toplabel) {
|
|
corner_set = _corners(corners);
|
|
text = !is_undef(text) ? text : _corners_text(corners);
|
|
for (i=[0:7]) if (corner_set[i]>0)
|
|
translate(CORNER_OFFSETS[i]*size/2)
|
|
color("red") sphere(d=2, $fn=16);
|
|
fwd(size/2) _edges_text3d(text, size=txtsize);
|
|
color("yellow",0.7) cuboid(size=size);
|
|
vpr = [55,0,25];
|
|
color("black")
|
|
if (is_def(toplabel))
|
|
for(h=idx(toplabel)) up(21+6*h)rot(vpr) text3d(select(toplabel,-h-1),size=3.3,h=.1,orient=UP,anchor=FRONT);
|
|
}
|
|
|
|
module _show_cube_faces(faces, size=20, toplabel,botlabel) {
|
|
color("red")
|
|
for(f=faces){
|
|
move(f*size/2) rot(from=UP,to=f)
|
|
cuboid([size,size,.1]);
|
|
}
|
|
vpr = [55,0,25];
|
|
color("black"){
|
|
if (is_def(toplabel))
|
|
for(h=idx(toplabel)) up(21+6*h)rot(vpr) text3d(select(toplabel,-h-1),size=3.3,h=.1,orient=UP,anchor=FRONT);
|
|
if (is_def(botlabel))
|
|
for(h=idx(botlabel)) down(26+6*h)rot(vpr) text3d(botlabel[h],size=3.3,h=.1,orient=UP,anchor=FRONT);
|
|
}
|
|
color("yellow",0.7) cuboid(size=size);
|
|
}
|
|
|
|
// vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap
|