This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WINDGAUGE03A #15 - Updated venturi tube with fin holders and cut-out.…
… Fixed parameter name R01_vyska_prekryti_statoru in WINDGAUGE_S01.scad.P_WINDGAUGE03A_R03.stl
- Loading branch information
Showing
5 changed files
with
95 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// copyFunctions.scad - library for copy versions of mirror/rotate/translate | ||
// May 2019 | ||
|
||
// general use: just like normal version of given function | ||
|
||
module rotate_copy(v=[1,0,0]) | ||
{ | ||
children(); | ||
rotate(v) children(); | ||
} | ||
|
||
module mirror_copy(v=[1,0,0]) | ||
{ | ||
children(); | ||
mirror(v) children(); | ||
} | ||
|
||
module translate_copy(v=[1,0,0]) | ||
{ | ||
children(); | ||
translate(v) children(); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.