Source code for raytraverse.formatter.formatter

# -*- coding: utf-8 -*-
# Copyright (c) 2020 Stephen Wasilewski, HSLU and EPFL
# =======================================================================
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# =======================================================================
import os
import shutil


[docs]class Formatter(object): """scene formatter readies scene files for simulation, must be compatible with desired renderer. """ #: line comment character comment = "#" #: extension for renderer scene file scene_ext = ""
[docs] @staticmethod def make_scene(scene_files, out, frozen=True): """compile scene""" if scene_files is None: return None if not os.path.isfile(scene_files): raise FileNotFoundError(f"{scene_files} must be an existing file") if frozen: try: shutil.copy(scene_files, out) except TypeError: raise ValueError('Cannot initialize Scene with ' f'area={scene_files}') else: out = scene_files return out
[docs] @staticmethod def get_scene(scene): return scene, False
[docs] @staticmethod def get_skydef(color=None, ground=True, name='skyglow'): """assemble sky definition""" pass
[docs] @staticmethod def get_sundef(vec, color, **kwargs): """assemble sun definition""" pass