Tripod mounts¶
⚙️ Spec sheet → — visual schematic and metrics measured from a real rendered STL.
Pure-Python port of BOSL2’s tripod_mounts.scad: a
ManfrottoRC2Plate — the
standard Manfrotto RC2 quick-release tripod mount plate.
-
class pybosl2.parts.tripod_mounts.ManfrottoRC2Plate(chamfer=
'all', anchor=Anchor.CENTER, spin=0.0, orient=Anchor.TOP, fn=None, fa=None, fs=None)[source]¶ Bases:
objectA Manfrotto RC2 tripod quick release mount plate.
The chamfer argument controls edge chamfering:
"all"(default),"bot"or"bottom"for bottom-only, or"none".Examples
A standard Manfrotto RC2 plate:
from pybosl2.parts.tripod_mounts import ManfrottoRC2Plate ManfrottoRC2Plate().show()Loading 3-D preview…- Parameters:¶
Examples¶
These mirror the examples in BOSL2’s tripod_mounts.scad, rendered live through PythonSCAD.
Examples that rely on BOSL2’s attachment/anchor system, or on features not in this port, are omitted.
manfrotto_rc2_plate
A standard Manfrotto RC2 plate with full chamfering:
from pybosl2.parts.tripod_mounts import ManfrottoRC2Plate
ManfrottoRC2Plate().show()
Loading 3-D preview…
A plate with bottom-only chamfering:
from pybosl2.parts.tripod_mounts import ManfrottoRC2Plate
ManfrottoRC2Plate(chamfer="bot").show()
Loading 3-D preview…