mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-06 03:53:23 +01:00
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/*
|
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
|
*
|
|
* Copyright (c) 2013, Doodle3D
|
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
|
*/
|
|
|
|
var VERTICALSHAPE;
|
|
var verticalShapes = {
|
|
"NONE": 'none',
|
|
"DIVERGING": 'diverging',
|
|
"CONVERGING": 'converging',
|
|
"SINUS": 'sinus'
|
|
};
|
|
|
|
function initVerticalShapes() {
|
|
// TODO give these vertical shapes a better spot
|
|
VERTICALSHAPE = verticalShapes.NONE;
|
|
$(".verticalShapes, .straight").on('mouseup touchend', function(e) {
|
|
e.preventDefault();
|
|
console.log("diverging");
|
|
VERTICALSHAPE = verticalShapes.NONE;
|
|
redrawRenderedPreview();
|
|
})
|
|
$(".verticalShapes, .diverging").on('mouseup touchend', function(e) {
|
|
e.preventDefault();
|
|
console.log("diverging");
|
|
VERTICALSHAPE = verticalShapes.DIVERGING;
|
|
redrawRenderedPreview();
|
|
})
|
|
$(".verticalShapes, .converging").on('mouseup touchend', function(e) {
|
|
e.preventDefault();
|
|
console.log("converging");
|
|
VERTICALSHAPE = verticalShapes.CONVERGING;
|
|
redrawRenderedPreview();
|
|
})
|
|
$(".verticalShapes, .sinus").on('mouseup touchend', function(e) {
|
|
e.preventDefault();
|
|
console.log("sinus");
|
|
VERTICALSHAPE = verticalShapes.SINUS;
|
|
redrawRenderedPreview();
|
|
})
|
|
|
|
}
|
|
|
|
function resetVerticalShapes() {
|
|
VERTICALSHAPE = verticalShapes.NONE;
|
|
}
|