This is the forum for the workshop "Bio Visualisation with Blender and MembraneEditor" which is taking place from 28 February to 01 March 2018 in the context of the "Konstanz Research School Chemical Biology (KoRS-CB) Workshop", presented by Mehmood Ghaffar and Bjorn Sommer.
https://www.chembiol ...
Search found 2 matches
- 26.02.2018, 15:47
- Forum: Bio Visualisation with Blender & MembraneEditor 2018-19
- Topic: BioVis WS 2017-18 Konstanz
- Replies: 1
- Views: 21145
- 25.02.2018, 23:12
- Forum: Bio Visualisation with Blender & MembraneEditor 2018-19
- Topic: Blender Python Scripts
- Replies: 0
- Views: 22987
Blender Python Scripts
Part 1: Create a dummy User Interface in Blender
import bpy
import sys
class UIPanel(bpy.types.Panel):
bl_label = 'Example Panel'
bl_space_type = "VIEW_3D" #Defines the location of Panel
bl_region_type = "UI"
def draw(self, context):
layout = self.layout
# To register UIPanel
bpy.utils ...
import bpy
import sys
class UIPanel(bpy.types.Panel):
bl_label = 'Example Panel'
bl_space_type = "VIEW_3D" #Defines the location of Panel
bl_region_type = "UI"
def draw(self, context):
layout = self.layout
# To register UIPanel
bpy.utils ...