mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-20 23:42:54 +00:00
The connector work has lived outside the code since 2026-08-05, in a workspace repo with no
remote. It is the basis of a decision that now shapes the Design tab, so it belongs here.
docs/design/mate-connectors/
DESIGN_MATE_CONNECTORS.md seven CAD systems surveyed; the frame-pair model this kernel
already matches; sections 8b/8c on the glyph, and section 9's
four open decisions (D1-D4) still awaiting Tommaso.
bear.step the male, Onshape 2026-08-05T08:27Z, md5 faf228326ee3f971
BearConnector_Female*.step/.stl, BearConnector_Cutter.step
built by make_female.py FROM the real male B-rep rather than
re-modelled, so the pocket is complementary by construction
including every deliberate asymmetry. Fit measured at exactly
0.2000 mm, zero interference, mated hosts proven coplanar.
BEAR_CONNECTOR_REVIEW.md the symmetry-group result: identity 81/81 edges, mirror-x 0/81,
mirror-y 0/81, rot180Z 0/81, rot90Z 0/81, diagonal 0/81 at
0.1 mm. Trivial group, so every PARTIAL view fixes orientation.
extract_outline.py, simplify_study.py, relief_sheet.py, handedness.py, make_female.py,
trim_female.py, fit_check.py, verify_trimmed.py, coplanar_test.py + their sheets
THE DECISION THIS SUPPORTS (snaporca-x0kd): the mate connector is drawn as a simplified BEAR
FACE by default, with the standard disc + roll quadrant + Z arrow kept behind a preference.
Face orientation is hardwired perception -- a toddler reads a face's roll and verse with no
instruction -- and no abstract glyph earns that. Measured against the alternative: the disc's
gold quadrant+tick falls 89 -> 66 -> 37 -> 20 -> 3 -> 0 lit pixels as the camera drops from
47 deg to edge-on, and is a shapeless blob by 16 deg.
WHAT THE SIMPLIFICATION STUDY SETTLED (snaporca-wi3z), all measured off the real B-rep:
The eyes are load-bearing. Same outline and muzzle with the eyes removed stops reading as
a face at every size. Whatever else goes, they stay.
45 -> 22 outline vertices with no loss of read at 22 / 32 / 48 px; the muzzle reduces to
one filled triangle. Three marks plus a cheek dot.
Drawn FLAT the face fails exactly where the disc fails: in the connector's plane everything
foreshortens by sin(elevation). Rendered as its real relief instead, lit pixels at 32 px go
164 -> 210 at 16 deg and 69 -> 120 at 6 deg, and the snout ridge stands proud as a profile
rather than smearing. The glyph must be a shaded relief, not an outline.
Handedness already reads without any added mark -- 32 to 35 % of lit pixels differ from the
mirror, and re-registering by best whole-pixel translation returns offset (0,0), so it is
real shape asymmetry. But it reads only BY COMPARISON. A dot on one cheek makes it local:
34.5 / 37.0 / 36.4 %, and unlike uneven eyes (42 %) it does not read as a defect.
Tommaso's calls: it stays a bear, and handedness must read.
The scripts were repointed at the co-located male and extract_outline.py re-run from here to
prove it -- same 45 outline points, same three inner wires, same 3829.5 mm2 back plate.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
69 lines
3.4 KiB
Python
69 lines
3.4 KiB
Python
# Does the connector pair let two hosts sit COPLANAR, or does it hold them apart?
|
|
#
|
|
# The male's flat back is the plane Y=0 and all its relief rises to +Y. So Y=0 is the natural
|
|
# mating datum: everything the male adds lives on one side of it. The test below builds two dummy
|
|
# host plates that meet on that plane -- one with the male FUSED on, one with the cavity CUT in --
|
|
# and measures whether they touch, interfere, or stand apart.
|
|
#
|
|
# It also emits the artifact that makes this work in practice: a CUTTER solid (the male grown by
|
|
# the clearance) that you subtract from any host. A standalone female block cannot keep two hosts
|
|
# coplanar, because its own floor material stands between them; a cavity can.
|
|
#
|
|
# Run: /snap/bin/freecad.cmd coplanar_test.py
|
|
|
|
import os
|
|
import FreeCAD as App
|
|
import Part
|
|
from FreeCAD import Vector
|
|
|
|
HERE = os.path.dirname(os.path.abspath(__file__))
|
|
MALE = os.path.join(HERE, "bear.step")
|
|
CLEAR = 0.20
|
|
|
|
male = Part.Shape(); male.read(MALE); male = male.Solids[0]
|
|
bb = male.BoundBox
|
|
print(f"male relief: Y {bb.YMin:.3f} .. {bb.YMax:.3f} -> datum plane Y=0, all relief on +Y")
|
|
|
|
# the flat back face, and proof it is the whole silhouette sitting on Y=0
|
|
back = max((f for f in male.Faces
|
|
if abs(f.CenterOfMass.y) < 1e-6 and abs(abs(f.normalAt(0, 0).y) - 1) < 1e-6),
|
|
key=lambda f: f.Area)
|
|
print(f"back face : {back.Area:.1f} mm2 on Y=0 -- this is the contact surface")
|
|
|
|
# ---- the cutter: the male grown by the clearance, poking 0.2 mm proud so the boolean is clean
|
|
cutter = male.makeOffsetShape(CLEAR, 1e-6, False, False, 0, 2, False).Solids[0]
|
|
cb = cutter.BoundBox
|
|
print(f"cutter : Y {cb.YMin:.3f} .. {cb.YMax:.3f}, {cutter.Volume/1000:.2f} cm3")
|
|
|
|
# ---- two dummy hosts meeting on Y = 0
|
|
W, H = 120.0, 100.0
|
|
hostA = Part.makeBox(W, 10.0, H, Vector(-W/2, -10.0, -15.0)) # occupies Y -10..0
|
|
hostB = Part.makeBox(W, 30.0, H, Vector(-W/2, 0.0, -15.0)) # occupies Y 0..30
|
|
|
|
partA = hostA.fuse(male) # male stands proud of A's face
|
|
partB = hostB.cut(cutter) # cavity sunk into B from its face
|
|
|
|
print(f"\npart A (host + male) : {partA.Volume/1000:.2f} cm3")
|
|
print(f"part B (host - cutter) : {partB.Volume/1000:.2f} cm3")
|
|
|
|
# ---- the question ------------------------------------------------------------------
|
|
inter = partA.common(partB)
|
|
iv = inter.Volume if inter.Solids else 0.0
|
|
gap = partA.distToShape(partB)[0]
|
|
print(f"\nRESULT interference A vs B : {iv:.6f} mm3 (0 = they do not collide)")
|
|
print(f"RESULT closest approach : {gap:.4f} mm (0 = the host faces are touching)")
|
|
|
|
# are the two host faces actually on the same plane?
|
|
fa = [f for f in partA.Faces if abs(f.CenterOfMass.y) < 1e-9 and abs(abs(f.normalAt(0,0).y)-1) < 1e-6]
|
|
fb = [f for f in partB.Faces if abs(f.CenterOfMass.y) < 1e-9 and abs(abs(f.normalAt(0,0).y)-1) < 1e-6]
|
|
print(f"RESULT A has {len(fa)} face(s) lying exactly on Y=0, total {sum(f.Area for f in fa):.1f} mm2")
|
|
print(f"RESULT B has {len(fb)} face(s) lying exactly on Y=0, total {sum(f.Area for f in fb):.1f} mm2")
|
|
print("RESULT -> the hosts meet on Y=0: COPLANAR" if fa and fb and iv < 1e-3
|
|
else "RESULT -> NOT coplanar")
|
|
|
|
doc = App.newDocument("Cutter")
|
|
o = doc.addObject("Part::Feature", "BearConnector_Cutter"); o.Shape = cutter
|
|
doc.recompute()
|
|
Part.export([o], os.path.join(HERE, "BearConnector_Cutter.step"))
|
|
print(f"\nwrote BearConnector_Cutter.step -- subtract this from any host to get the socket")
|