0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-06-01 20:34:31 +02:00
doodle3d-client/js/verticalShapes.js
2014-01-09 18:10:54 +01:00

21 lines
358 B
JavaScript

var VERTICALSHAPE;
var verticalShapes = {
"NONE": 'none',
"DIVERGING": 'diverging',
"CONVERGING": 'converging',
"SINUS": 'sinus'
};
function setVerticalShape(s) {
VERTICALSHAPE = s;
redrawRenderedPreview();
}
function initVerticalShapes() {
resetVerticalShapes();
}
function resetVerticalShapes() {
setVerticalShape(verticalShapes.NONE);
}