-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from jsconan/release-0.2.0
Release 0.2.0
- Loading branch information
Showing
52 changed files
with
3,276 additions
and
777 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,34 @@ | ||
# rc-tracks history | ||
|
||
## [Version 0.1.0](https://github.com/jsconan/rc-tracks/releases/tag/v0.1.0) | ||
## [Version 0.2.0](https://github.com/jsconan/rc-tracks/releases/tag/0.2.0) | ||
|
||
Improved design of the race track system for 1/24 to 1/32 scale RC cars. | ||
|
||
- The file structure has been updated. | ||
- The link between parts has been reworked for a better track cohesion. | ||
- The profiles have been redesigned. | ||
- A distinction is made between the inner and outer curves and the parts can be resized to a multiple of the main length. | ||
- Added shapes: | ||
- Straight track chunks: simple and double length | ||
- Curved track chunks: inner, outer, small, short, U-turn | ||
- Special track chunks: arch to constraint the track width between two sides, U-turn compensation | ||
- Track samples to draw a model of the track (default scaled to 1/10) | ||
- Track accessories: led-clip, mast, flag | ||
|
||
--- | ||
|
||
Notes: | ||
|
||
- Import from the repository [jsconan/things](https://github.com/jsconan/things) | ||
- Extract of the pull request https://github.com/jsconan/things/pull/40 | ||
|
||
## [Version 0.1.0](https://github.com/jsconan/rc-tracks/releases/tag/0.1.0) | ||
|
||
Design a race track system for 1/24 to 1/32 scale RC cars. | ||
|
||
--- | ||
|
||
Import from the repository [jsconan/things](https://github.com/jsconan/things) | ||
Notes: | ||
|
||
Extract of the pull request https://github.com/jsconan/things/pull/37 | ||
- Import from the repository [jsconan/things](https://github.com/jsconan/things) | ||
- Extract of the pull request https://github.com/jsconan/things/pull/37 |
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,2 @@ | ||
/output | ||
/dist |
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,41 @@ | ||
/** | ||
* @license | ||
* GPLv3 License | ||
* | ||
* Copyright (c) 2020 Jean-Sebastien CONAN | ||
* | ||
* This file is part of jsconan/things. | ||
* | ||
* jsconan/things is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* jsconan/things is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with jsconan/things. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/** | ||
* A race track system for 1/24 to 1/32 scale RC cars. | ||
* | ||
* Show the config values. | ||
* | ||
* @author jsconan | ||
*/ | ||
|
||
// Import the project's setup. | ||
include <setup.scad> | ||
|
||
// Show the values | ||
printConfig( | ||
length = trackSectionSize, | ||
width = trackLaneWidth, | ||
height = barrierHeight, | ||
radius = trackRadius, | ||
base = barrierHolderBase | ||
); |
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
Oops, something went wrong.