kopia lustrzana https://github.com/vilemduha/blendercam
22 wiersze
374 B
Python
22 wiersze
374 B
Python
"""Fabex 'blank.py'
|
|
|
|
Empty panel in Sidebar > CNC
|
|
"""
|
|
|
|
import bpy
|
|
from bpy.types import Panel
|
|
|
|
|
|
class CAM_BLANK_Panel(Panel):
|
|
"""CAM Blank Panel"""
|
|
|
|
bl_idname = "CAM_PT_blank"
|
|
bl_label = ""
|
|
bl_space_type = "VIEW_3D"
|
|
bl_region_type = "UI"
|
|
bl_category = "CNC"
|
|
bl_options = {"HIDE_HEADER"}
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|