.. _rendering: .. py:currentmodule:: tissue_forge Rendering and System Interaction -------------------------------- Tissue Forge provides a number of methods to interact with the rendering engine and host CPU via the :py:mod:`system` module (``system`` namespace in C++). Basic information about a Tissue Forge installation can be retrieved on demand, including information about the CPU, software compilation and available graphics hardware, :: import tissue_forge as tf tf.init() print('CPU info:', tf.system.cpu_info()) print('Compilation info:', tf.system.compile_flags()) print('OpenGL info:', tf.system.gl_info()) The :py:mod:`system` module provides rendering methods for customizing basic visualization during simulation. Basic visualization customization combines with specifications made using :ref:`Style