https://github.com/minorua/Qgis2threejs
Revision 590997016492304b69f1ce13fa872200562c9384 authored by Minoru Akagi on 04 April 2018, 05:30:13 UTC, committed by Minoru Akagi on 04 April 2018, 05:30:13 UTC
1 parent c34c747
Raw File
Tip revision: 590997016492304b69f1ce13fa872200562c9384 authored by Minoru Akagi on 04 April 2018, 05:30:13 UTC
Overlay: remove border and side options
Tip revision: 5909970
conf.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.99.0"
debug_mode = 1
  # 0. no debug info
  # 1. JS console, qDebug
  # 2. JS console, qDebug, log file, "debug" element
live_in_another_process = False

class DefaultSettings:

  def __init__(self):
    # template
    self.template = "3DViewer(dat-gui).html"

    # world
    self.baseSize = 100
    self.zExaggeration = 1.0
    self.zShift = 0

    # controls
    self.controls = "OrbitControls.js"    # last selected one has priority

  def __getattr__(self, name):
    raise AttributeError

def_vals = DefaultSettings()
back to top