https://github.com/minorua/Qgis2threejs
Raw File
Tip revision: 26508370f5b83dcba412c55fb3c6e1035aab0f5d authored by Minoru Akagi on 29 May 2015, 04:59:32 UTC
version 1.3
Tip revision: 2650837
settings.py
# -*- coding: utf-8 -*-
"""
/***************************************************************************
 DefaultSettings
                             -------------------
        begin                : 2015-03-02
        copyright            : (C) 2015 Minoru Akagi
        email                : akaginch@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program 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 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
"""

plugin_version = "1.3"
debug_mode = 0

class DefaultSettings:

  def __init__(self):
    self.baseSize = 100
    self.zExaggeration = 1.5
    self.zShift = 0

  def __getattr__(self, name):
    raise AttributeError

def_vals = DefaultSettings()
back to top