@@ -788,20 +788,20 @@ class GPENCIL_OT_SURFSK_strokes_to_curves(bpy.types.Operator):
...
@@ -788,20 +788,20 @@ class GPENCIL_OT_SURFSK_strokes_to_curves(bpy.types.Operator):
defregister():
defregister():
bpy.types.Scene.IntProperty(attr="SURFSK_edges_U",name="Cross",description="Number of edge rings crossing the strokes (perpendicular to strokes direction)",default=10,min=0,max=100000)
bpy.types.Scene.SURFSK_edges_U=bpy.props.IntProperty(name="Cross",description="Number of edge rings crossing the strokes (perpendicular to strokes direction)",default=10,min=0,max=100000)
bpy.types.Scene.IntProperty(attr="SURFSK_edges_V",name="Follow",description="Number of edge rings following the strokes (parallel to strokes direction)",default=10,min=0,max=100000)
bpy.types.Scene.SURFSK_edges_V=bpy.props.IntProperty(name="Follow",description="Number of edge rings following the strokes (parallel to strokes direction)",default=10,min=0,max=100000)
bpy.types.Scene.IntProperty(attr="SURFSK_precision",name="Precision",description="Precision level of the surface calculation",default=4,min=0,max=100000)
bpy.types.Scene.SURFSK_precision=bpy.props.IntProperty(name="Precision",description="Precision level of the surface calculation",default=4,min=0,max=100000)
bpy.types.Scene.BoolProperty(attr="SURFSK_keep_strokes",name="Keep strokes",description="Keeps the sketched strokes after adding the surface",default=False)
bpy.types.Scene.SURFSK_keep_strokes=bpy.props.BoolProperty(name="Keep strokes",description="Keeps the sketched strokes after adding the surface",default=False)
name="Media",description="Radiosity estimation can be affected by media",
default=False)
Scene.pov_radio_minimum_reuse=FloatProperty(
name="Minimum Reuse",description="Fraction of the screen width which sets the minimum radius of reuse for each sample point (At values higher than 2% expect errors)",