Laurynas Duburas laurynas
  • Joined on 2021-06-10
Laurynas Duburas pushed to curves-draw-nurbs at laurynas/blender 2024-01-01 20:43:15 +01:00
3c64ac8a38 Adds "as NURBS" mode to Bezier draw
98c6bded98 Fix: Triage Tools: Python error when accessing a 'created branch' activity
Compare 2 commits »
Laurynas Duburas commented on pull request blender/blender#116354 2024-01-01 14:00:57 +01:00
Curves: Add extrude operator

Done.

Laurynas Duburas pushed to curves-extrude-op at laurynas/blender 2024-01-01 13:59:13 +01:00
b708900cc2 Multithreading added
Laurynas Duburas pushed to curves-extrude-op at laurynas/blender 2024-01-01 12:31:18 +01:00
308ee94e3c Updated to changes in main
fba67d989e Merge branch 'main' into curves-extrude-op
64f06e8d3c Small optimization
86d008d112 Metal: Fix missing new line characters
0251701cd6 Fix #116252: Corrections to Text Object Special Characters Menu
Compare 182 commits »
Laurynas Duburas commented on pull request blender/blender#116354 2023-12-30 22:29:36 +01:00
Curves: Add extrude operator

No multithreading yet. I'll think about it next year :)

Laurynas Duburas pushed to curves-extrude-op at laurynas/blender 2023-12-30 22:26:47 +01:00
3417ed9817 Some comments added
623844ea46 class CurvesExtrusion refactored to struct CurvesCopy
298de51136 Small fixes
Compare 3 commits »
Laurynas Duburas deleted branch cyclic-in-curves-draw from laurynas/blender 2023-12-30 20:22:13 +01:00
Laurynas Duburas pushed to cyclic-in-curves-draw at laurynas/blender 2023-12-30 15:52:46 +01:00
2feddb19f4 Comment style fix
Laurynas Duburas commented on pull request blender/blender#116638 2023-12-30 15:45:06 +01:00
Fix: all curves drawn cyclic if "cyclic" attribute exists

It can change for Bezier. Look at your comment bellow and my code comment with a wrong style :)

Laurynas Duburas created pull request blender/blender#116638 2023-12-29 21:30:57 +01:00
Fix: all curves drawn cyclic if "cyclic" attribute exists
Laurynas Duburas deleted branch solidify-crease-angle from laurynas/blender 2023-12-29 21:20:19 +01:00
Laurynas Duburas pushed to cyclic-in-curves-draw at laurynas/blender 2023-12-28 18:40:59 +01:00
c9fed69a30 Fix: all curves drawn cyclic if "cyclic" attribute exists
129fb2eab8 Anim: make bone collections hierarchical
423ddac25f Cleanup: Anim, clarify comment in rna_def_armature
a582755321 Anim: Remove OPTYPE_REGISTER flag from some bone collection operators
c019ad2cfe Refactor: rename bonecoll_find_index and move to namespace
Compare 10 commits »
Laurynas Duburas created branch cyclic-in-curves-draw in laurynas/blender 2023-12-28 18:40:59 +01:00
Laurynas Duburas commented on issue blender/blender#116402 2023-12-26 23:01:39 +01:00
Curve Hook modifier broken due to selection changes

Sadly after some time of debugging it appeared there is nothing to fix. @sage2014 in old version when you are assigning modifier control point and both handles are selected. In 4.0 only control…

Laurynas Duburas created pull request blender/blender#116491 2023-12-23 16:29:41 +01:00
Fix #116019: Solidify Crease Inner not working with edge crease attribute
Laurynas Duburas pushed to solidify-crease-angle at laurynas/blender 2023-12-23 16:15:55 +01:00
047062a784 Fix #116019: Solidify Crease Inner not working with edge crease attribute
84d1d30028 EEVEE-Next: Add translucent contribution in probe capture
dc155e2ae4 EEVEE-Next: Remove Light eval hard coded closures
df91fb329e Fix: EEVEE-Next: Broken Support for SSS
574daf20e1 Fix #116389: Sculpt: Box Hide tool keymap option "Outside" not working
Compare 10 commits »
Laurynas Duburas created branch solidify-crease-angle in laurynas/blender 2023-12-23 16:15:55 +01:00
Laurynas Duburas pushed to curves-extrude-op at laurynas/blender 2023-12-21 18:57:56 +01:00
fc26b86f09 CustomData_copy removed
563571427c Reduced number of copy operations, variable renaming
Compare 2 commits »
Laurynas Duburas pushed to curves-extrude-op at laurynas/blender 2023-12-21 14:28:55 +01:00
bddb4e44b5 Calculations moved to separate class, switched to foreach_range
Laurynas Duburas commented on pull request blender/blender#116354 2023-12-20 19:33:35 +01:00
Curves: Add extrude operator

Just checked code of OffsetIndices . It uses second index as exclusive, in this situation both inclusive needed. OffsetIndices calculates IndexRange size by size = end - begin;, I need…