Lukasz Czyz glukoz
  • Joined on 2016-07-07
Lukasz Czyz commented on issue blender/blender#129327 2024-10-23 16:38:38 +02:00
minimum stretch with importance weight UV unwrap method causes error

There is a fix pending for importance weights: blender/blender#128757

Unfortunately it is still under review :/

Lukasz Czyz commented on pull request blender/blender#128757 2024-10-18 14:54:39 +02:00
Fix #128322: SLIM - fixes.

@ideasman42 Please review.

Lukasz Czyz pushed to slim_fixes at glukoz/blender 2024-10-18 14:46:23 +02:00
fdd0f7e9d3 Merge branch 'blender-v4.3-release' of https://projects.blender.org/blender/blender into slim_fixes
dcfe9eed2f Assets: Update assets repository hash for essentials library updates
30c3d17bb6 Fix #129190: invalid runtime data in lineart modifier after load
078f16a8d5 Fix: GPv3: Interpolation not working with no selection
d5d81c5078 VSE: Switch to box select default for timeline
Compare 188 commits »
Lukasz Czyz pushed to slim_fixes at glukoz/blender 2024-10-18 14:28:50 +02:00
3f6454342a Copy vertex fix.
Lukasz Czyz pushed to slim_fixes at glukoz/blender 2024-10-18 13:33:38 +02:00
6618a91c5c Fix for weight ptr.
Lukasz Czyz created pull request blender/blender#128757 2024-10-08 14:09:25 +02:00
WIP: SLIM - fixes.
Lukasz Czyz pushed tag v3.6.16 to glukoz/blender 2024-10-08 14:05:33 +02:00
Lukasz Czyz pushed tag v4.2.2 to glukoz/blender 2024-10-08 14:05:33 +02:00
Lukasz Czyz pushed to slim_fixes at glukoz/blender 2024-10-08 14:05:30 +02:00
19dec0f735 SLIM - fixes.
92b4c853db Fix: Python: Incorrect default curve_type when calling drawing.add_strokes()
09ca5a4c5f Fix: Python: Empty list of drawing.strokes doesn't have length of 0
35c2461130 Fix: Build warnings missing include
27932162d8 Fix: Cache files location
Compare 10 commits »
Lukasz Czyz created branch slim_fixes in glukoz/blender 2024-10-08 14:05:29 +02:00
Lukasz Czyz commented on issue blender/blender#128322 2024-10-04 18:20:12 +02:00
Pack Islands - missing properties warning in console

Thanks. I will look at it soon.

Lukasz Czyz commented on pull request blender/blender#114545 2024-09-30 19:52:49 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

Now I would like to focus on updating the Minimize Stretch operator so it uses SLIM behind the scenes. Thus no time for updating documentation.

Lukasz Czyz commented on pull request blender/blender#114545 2024-09-21 15:49:21 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

Great news! Thank you all for testing and reviewing this PR :)

Lukasz Czyz commented on pull request blender/blender#114545 2024-09-18 09:08:41 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

A kind reminder.

Lukasz Czyz pushed to uv_unwrapping_slim_algorithm_v5_update at glukoz/blender 2024-09-13 18:40:36 +02:00
cf689c2c5b make format.
fee676bc74 Add uvedit_live_unwrap_timer check.
8439131e39 uv_matrices - layout fix.
Compare 3 commits »
Lukasz Czyz commented on pull request blender/blender#114545 2024-09-13 18:00:57 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

After a closer look at the code: it turns out Eigen excepts a column-major format of input. It means that the given arrays are initialized in the following layout:

`[ all x coordinates, 0 .. n…

Lukasz Czyz commented on pull request blender/blender#114545 2024-09-13 15:03:16 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

Can we finish this review in the nearest feature? I think there is not much work left here.

Lukasz Czyz commented on pull request blender/blender#114545 2024-09-06 15:21:47 +02:00
The SLIM UV unwrap algorithm implementation for Blender 4.x

Using a linearized form is safer because we have full control over the data layout. The proper layout is essential when the arrays are passed to initialize Eigen Map objects.