/*************************************************************************************
 *
 * Rounded corner square tray.
 *
 *************************************************************************************
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT
 * HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * IT IS NOT PERMITTED TO MODIFY THIS COMMENT BLOCK.
 *
 * (c)2024, Claude "Tryphon" Theroux, Montreal, Quebec, Canada
 * http://www.ctheroux.com/
 *
 ************************************************************************************/

// Total width of the tray in mm
TrayWidth = 240;

// Total length of the tray in mm
TrayLength = 220;

// Total height of the tray in mm
TrayHeight = 20;

// Corner radius in mm
CornerRadius = 15;

// Tray wall thickness in mm
TrayThickness = 1.6;

////////////////////////////////////////////////////////////////
// 
// Computed values. Nothing should be modified below this line.
//

include <ParametricTrays.scad>;

RoundedCornerSquareTray();
