Skip to content

tripod_mounts.scad

Revar Desmera edited this page Apr 24, 2024 · 1 revision

LibFile: tripod_mounts.scad

Mount plates for tripods. Currently only the Manfrotto RC2 plate.

To use, add the following lines to the beginning of your file:

include <BOSL2/std.scad>
include <BOSL2/tripod_mounts.scad>

File Contents

Module: manfrotto_rc2_plate()

Synopsis: Creates a Manfrotto RC2 tripod quick release mount plate. [Geom]

Topics: Parts

See Also: threaded_rod()

Usage:

  • manfrotto_rc2_plate([chamfer],[anchor],[orient],[spin]) [ATTACHMENTS];

Description:

Creates a Manfrotto RC2 quick release mount plate to mount to a tripod. The chamfer argument lets you control whether the model edges are chamfered. By default all edges are chamfered, but you can set it to "bot" to chamfer only the bottom, so that connections to a model larger than the plate doin't have a V-groove at the junction. The plate is 10.5 mm thick.

Arguments:

By Position What it does
chamfer "none" for no chamfer, "all" for full chamfering, and "bot" or "bottom" for bottom chamfering. Default: "all".

Example 1:

manfrotto\_rc2\_plate() Example 1
include <BOSL2/std.scad>
include <BOSL2/tripod_mounts.scad>
manfrotto_rc2_plate();



Example 2:

manfrotto\_rc2\_plate() Example 2
include <BOSL2/std.scad>
include <BOSL2/tripod_mounts.scad>
manfrotto_rc2_plate("bot");




Clone this wiki locally