Print3D: Accidentally removed default property value in previous commit

This commit is contained in:
Mikhail Rachinskiy 2017-09-03 07:07:53 +04:00
parent 3eb4145a4c
commit df3737479f
3 changed files with 4 additions and 2 deletions

View File

@ -102,6 +102,7 @@ class Print3D_Scene_Props(PropertyGroup):
name="Angle",
description="Limit for checking distorted faces",
subtype='ANGLE',
default=math.radians(45.0),
min=0.0, max=math.radians(180.0),
)
angle_sharp = FloatProperty(
@ -118,7 +119,7 @@ class Print3D_Scene_Props(PropertyGroup):
)
# Panels for updating
# Update panel category name
panels = (
ui.VIEW3D_PT_Print3D_Object,
ui.VIEW3D_PT_Print3D_Mesh,

View File

@ -21,12 +21,12 @@
# All Operator
import bpy
import bmesh
from bpy.types import Operator
from bpy.props import (
IntProperty,
FloatProperty,
)
import bmesh
from . import (
mesh_helpers,

View File

@ -22,6 +22,7 @@
from bpy.types import Panel
import bmesh
from . import report