Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
df419245
Commit
df419245
authored
2 years ago
by
Jesse Yurkovich
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/blender-v3.3-release'
parents
33e3ba6c
94ebaf04
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
curve_tools/auto_loft.py
+1
-0
1 addition, 0 deletions
curve_tools/auto_loft.py
curve_tools/operators.py
+9
-0
9 additions, 0 deletions
curve_tools/operators.py
curve_tools/splines_sequence.py
+1
-0
1 addition, 0 deletions
curve_tools/splines_sequence.py
with
11 additions
and
0 deletions
curve_tools/auto_loft.py
+
1
−
0
View file @
df419245
...
@@ -12,6 +12,7 @@ class OperatorAutoLoftCurves(Operator):
...
@@ -12,6 +12,7 @@ class OperatorAutoLoftCurves(Operator):
bl_idname
=
"
curvetools.create_auto_loft
"
bl_idname
=
"
curvetools.create_auto_loft
"
bl_label
=
"
Loft
"
bl_label
=
"
Loft
"
bl_description
=
"
Lofts selected curves
"
bl_description
=
"
Lofts selected curves
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
def
poll
(
cls
,
context
):
def
poll
(
cls
,
context
):
...
...
This diff is collapsed.
Click to expand it.
curve_tools/operators.py
+
9
−
0
View file @
df419245
...
@@ -145,6 +145,7 @@ class OperatorOriginToSpline0Start(bpy.types.Operator):
...
@@ -145,6 +145,7 @@ class OperatorOriginToSpline0Start(bpy.types.Operator):
bl_idname
=
"
curvetools.operatororigintospline0start
"
bl_idname
=
"
curvetools.operatororigintospline0start
"
bl_label
=
"
OriginToSpline0Start
"
bl_label
=
"
OriginToSpline0Start
"
bl_description
=
"
Sets the origin of the active/selected curve to the starting point of the (first) spline. Nice for curve modifiers
"
bl_description
=
"
Sets the origin of the active/selected curve to the starting point of the (first) spline. Nice for curve modifiers
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -182,6 +183,7 @@ class OperatorIntersectCurves(bpy.types.Operator):
...
@@ -182,6 +183,7 @@ class OperatorIntersectCurves(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorintersectcurves
"
bl_idname
=
"
curvetools.operatorintersectcurves
"
bl_label
=
"
Intersect
"
bl_label
=
"
Intersect
"
bl_description
=
"
Intersects selected curves
"
bl_description
=
"
Intersects selected curves
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -233,6 +235,7 @@ class OperatorLoftCurves(bpy.types.Operator):
...
@@ -233,6 +235,7 @@ class OperatorLoftCurves(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorloftcurves
"
bl_idname
=
"
curvetools.operatorloftcurves
"
bl_label
=
"
Loft
"
bl_label
=
"
Loft
"
bl_description
=
"
Lofts selected curves
"
bl_description
=
"
Lofts selected curves
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -258,6 +261,7 @@ class OperatorSweepCurves(bpy.types.Operator):
...
@@ -258,6 +261,7 @@ class OperatorSweepCurves(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorsweepcurves
"
bl_idname
=
"
curvetools.operatorsweepcurves
"
bl_label
=
"
Sweep
"
bl_label
=
"
Sweep
"
bl_description
=
"
Sweeps the active curve along to other curve (rail)
"
bl_description
=
"
Sweeps the active curve along to other curve (rail)
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -283,6 +287,7 @@ class OperatorBirail(bpy.types.Operator):
...
@@ -283,6 +287,7 @@ class OperatorBirail(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorbirail
"
bl_idname
=
"
curvetools.operatorbirail
"
bl_label
=
"
Birail
"
bl_label
=
"
Birail
"
bl_description
=
"
Generates a birailed surface from 3 selected curves -- in order: rail1, rail2 and profile
"
bl_description
=
"
Generates a birailed surface from 3 selected curves -- in order: rail1, rail2 and profile
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -306,6 +311,7 @@ class OperatorSplinesSetResolution(bpy.types.Operator):
...
@@ -306,6 +311,7 @@ class OperatorSplinesSetResolution(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorsplinessetresolution
"
bl_idname
=
"
curvetools.operatorsplinessetresolution
"
bl_label
=
"
SplinesSetResolution
"
bl_label
=
"
SplinesSetResolution
"
bl_description
=
"
Sets the resolution of all splines
"
bl_description
=
"
Sets the resolution of all splines
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -330,6 +336,7 @@ class OperatorSplinesRemoveZeroSegment(bpy.types.Operator):
...
@@ -330,6 +336,7 @@ class OperatorSplinesRemoveZeroSegment(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorsplinesremovezerosegment
"
bl_idname
=
"
curvetools.operatorsplinesremovezerosegment
"
bl_label
=
"
SplinesRemoveZeroSegment
"
bl_label
=
"
SplinesRemoveZeroSegment
"
bl_description
=
"
Removes splines with no segments -- they seem to creep up, sometimes
"
bl_description
=
"
Removes splines with no segments -- they seem to creep up, sometimes
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -364,6 +371,7 @@ class OperatorSplinesRemoveShort(bpy.types.Operator):
...
@@ -364,6 +371,7 @@ class OperatorSplinesRemoveShort(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorsplinesremoveshort
"
bl_idname
=
"
curvetools.operatorsplinesremoveshort
"
bl_label
=
"
SplinesRemoveShort
"
bl_label
=
"
SplinesRemoveShort
"
bl_description
=
"
Removes splines with a length smaller than the threshold
"
bl_description
=
"
Removes splines with a length smaller than the threshold
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
@@ -393,6 +401,7 @@ class OperatorSplinesJoinNeighbouring(bpy.types.Operator):
...
@@ -393,6 +401,7 @@ class OperatorSplinesJoinNeighbouring(bpy.types.Operator):
bl_idname
=
"
curvetools.operatorsplinesjoinneighbouring
"
bl_idname
=
"
curvetools.operatorsplinesjoinneighbouring
"
bl_label
=
"
SplinesJoinNeighbouring
"
bl_label
=
"
SplinesJoinNeighbouring
"
bl_description
=
"
Joins neighbouring splines within a distance smaller than the threshold
"
bl_description
=
"
Joins neighbouring splines within a distance smaller than the threshold
"
bl_options
=
{
'
UNDO
'
}
@classmethod
@classmethod
...
...
This diff is collapsed.
Click to expand it.
curve_tools/splines_sequence.py
+
1
−
0
View file @
df419245
...
@@ -214,6 +214,7 @@ class RearrangeSpline(bpy.types.Operator):
...
@@ -214,6 +214,7 @@ class RearrangeSpline(bpy.types.Operator):
bl_idname
=
"
curvetools.rearrange_spline
"
bl_idname
=
"
curvetools.rearrange_spline
"
bl_label
=
"
Rearrange Spline
"
bl_label
=
"
Rearrange Spline
"
bl_description
=
"
Rearrange Spline
"
bl_description
=
"
Rearrange Spline
"
bl_options
=
{
'
UNDO
'
}
Types
=
[(
'
NEXT
'
,
"
Next
"
,
"
next
"
),
Types
=
[(
'
NEXT
'
,
"
Next
"
,
"
next
"
),
(
'
PREV
'
,
"
Prev
"
,
"
prev
"
)]
(
'
PREV
'
,
"
Prev
"
,
"
prev
"
)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment