Moved files. Re-rendered with newly-compiled OpenSCAD.
This commit is contained in:
parent
05d15dd730
commit
72b1607d4f
|
@ -1,3 +1,3 @@
|
|||
[submodule "common"]
|
||||
path = common
|
||||
path = scad/common
|
||||
url = https://git.sixteenmillimeter.com/modules/common.git
|
||||
|
|
24
Makefile
24
Makefile
|
@ -1,26 +1,26 @@
|
|||
|
||||
SRC=bolex_rewind_key.scad
|
||||
SRC=scad/bolex_rewind_key.scad
|
||||
IM=convert
|
||||
OPENSCAD=openscad
|
||||
OPENSCAD_OPTIONS=-D VERBOSE=false
|
||||
THEME=DeepOcean
|
||||
OPENSCAD_IMAGE=--viewall --render --imgsize=512,512 --colorscheme=$(THEME)
|
||||
ORDER_STL=python3 common/c14n_stl.py
|
||||
ORDER_STL=python3 scad/common/c14n_stl.py
|
||||
|
||||
all: bolex_rewind_key bolex_rewind_key_handle
|
||||
|
||||
bolex_rewind_key : $(SRC)
|
||||
echo "Generating $@.stl from $(SRC)..."
|
||||
$(OPENSCAD) $(OPENSCAD_OPTIONS) -o $@.stl -D PART=\"$@\" $(SRC)
|
||||
$(ORDER_STL) $@.stl
|
||||
$(OPENSCAD) $(OPENSCAD_IMAGE) -o $@.png -D PART=\"$@\" $(SRC)
|
||||
$(IM) $@.png $@.jpg
|
||||
rm $@.png
|
||||
$(OPENSCAD) $(OPENSCAD_OPTIONS) -o stl/$@.stl -D PART=\"$@\" $(SRC)
|
||||
$(ORDER_STL) stl/$@.stl
|
||||
$(OPENSCAD) $(OPENSCAD_IMAGE) -o img/$@.png -D PART=\"$@\" $(SRC)
|
||||
$(IM) img/$@.png img/$@.jpg
|
||||
rm img/$@.png
|
||||
|
||||
bolex_rewind_key_handle : $(SRC)
|
||||
echo "Generating $@.stl from $(SRC)..."
|
||||
$(OPENSCAD) $(OPENSCAD_OPTIONS) -o $@.stl -D PART=\"$@\" $(SRC)
|
||||
$(ORDER_STL) $@.stl
|
||||
$(OPENSCAD) $(OPENSCAD_IMAGE) -o $@.png -D PART=\"$@\" $(SRC)
|
||||
$(IM) $@.png $@.jpg
|
||||
rm $@.png
|
||||
$(OPENSCAD) $(OPENSCAD_OPTIONS) -o stl/$@.stl -D PART=\"$@\" $(SRC)
|
||||
$(ORDER_STL) stl/$@.stl
|
||||
$(OPENSCAD) $(OPENSCAD_IMAGE) -o img/$@.png -D PART=\"$@\" $(SRC)
|
||||
$(IM) img/$@.png img/$@.jpg
|
||||
rm img/$@.png
|
||||
|
|
10
Readme.md
10
Readme.md
|
@ -6,27 +6,27 @@
|
|||
|
||||
# Bolex Rewind Key
|
||||
|
||||
![Bolex Rewind Key](./bolex_rewind_key.jpg)
|
||||
![Bolex Rewind Key](./img/bolex_rewind_key.jpg)
|
||||
|
||||
The Bolex rewind key for rewinding and advancing the Bolex 16mm movie camera using the 8:1 or 1:1 gear shaft.
|
||||
Use for superimpositions, fades or animation.
|
||||
|
||||
NOTE: PLA, PETG and ABS and other plastics are not recommended materials for the key as they will break.
|
||||
NOTE: PLA, PETG and ABS and other plastics are not recommended materials for the key as they will break under force.
|
||||
The handle can be printed in plastic and attached with glue around the stem of the key so that it can rotate freely.
|
||||
|
||||
<!-- website
|
||||
### [Download OpenSCAD Source](./bolex_rewind_key.zip/download)
|
||||
website -->
|
||||
|
||||
### [Download STL](./bolex_rewind_key.stl/download)
|
||||
### [Download STL](./stl/bolex_rewind_key.stl/download)
|
||||
|
||||
### [Buy on Shapeways](https://links.sixteenmillimeter.com/7Uxx0FE8)
|
||||
|
||||
# Bolex Rewind Key Handle
|
||||
|
||||
![Bolex Rewind Key Handle](./bolex_rewind_key_handle.jpg)
|
||||
![Bolex Rewind Key Handle](./img/bolex_rewind_key_handle.jpg)
|
||||
|
||||
### [Download STL](./bolex_rewind_key_handle.stl/download)
|
||||
### [Download STL](./stl/bolex_rewind_key_handle.stl/download)
|
||||
|
||||
### [Buy on Shapeways](https://links.sixteenmillimeter.com/7Uxx0FE8)
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
14282
bolex_rewind_key.stl
14282
bolex_rewind_key.stl
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 38 KiB |
File diff suppressed because it is too large
Load Diff
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
|
@ -123,7 +123,7 @@ module bolex_rewind_knurled_handle_SPLIT (piece = 0) {
|
|||
}
|
||||
}
|
||||
|
||||
PART = "bolex_rewind_key";
|
||||
PART = "bolex_rewind_key_handle";
|
||||
|
||||
if (PART == "bolex_rewind_key") {
|
||||
bolex_rewind_key();
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue