added segmentGrid()

This commit is contained in:
2026-04-27 15:42:38 -04:00
parent bc92dfa19f
commit 00dc2c0592

View File

@@ -14,6 +14,9 @@
include <lib/pgsm_sixinch.scad>
include <lib/esp32.scad>
include <lib/strapping.scad>
include <lib/snowmarker.scad>
include <csg/gridstack.scad>
/*
@@ -64,11 +67,11 @@ module esp32_stamp_positioning() {
/*
Initial placement in a proposed conveyor segment
Initial placement of the S-1655 in a proposed conveyor segment
No image published.
Not yet mapped for potential uses.
-------------------------------------------------------------------------- */
strap_stamp_positioning(strapLen=100, slideIDX=8, wirePairs=1);
*strap_stamp_positioning(strapLen=100, slideIDX=8, wirePairs=1);
module strap_stamp_positioning(strapLen, slideIDX, wirePairs) {
rotate([0, 90, 0]) raw_strap(adjWidth = S1655NW, adjLength = strapLen, adjThickness = S1655NT);
hindge_conveyor_standarSlideY(dimSlideY=slideIDX, drawPairs=wirePairs);
@@ -80,8 +83,24 @@ Initial placement of the snow marker in a proposed conveyor segment
No image published.
Not yet mapped for potential uses.
-------------------------------------------------------------------------- */
stamp_snowmarker_positioning();
*stamp_snowmarker_positioning();
module stamp_snowmarker_positioning() {
rawRod(adjDia=snowMarkerAND, cutLen=100);
garden_staple();
}
/*
Initial placement of the CSG Grid in the proposed conveyor segmeent
No image published.
Not yet mapped for potential uses.
-------------------------------------------------------------------------- */
*segmentGrid_positioning();
module segmentGrid_positioning() {
moveZ = ((lh*hc)*0.5) - (lh*0.5);
translate([0, 0, -(2*moveZ)]) solidGrid();
*segmentGrid();
garden_staple();
//up(5) solidGrid();
}