Applyng Metaball nonuniform Scaling regresses to uniform #124319

Open
opened 2024-07-07 22:25:08 +02:00 by Philip-Schroeder · 5 comments

System Information:
Ubuntu 24.04 LTS x86_64
Graphics Card: NVIDIA GeForce RTX 4060

Blender Version:
Broken: 4.1.1 Release
Worked: -

Short description of Issue:
When scaling metaballs not on all axes at the same time (nonuniform scaling) and afterwards applying the scale,
the scaling would switch to a uniform scaling distorting the metaball.

Exact steps for others to reproduce the issue:

Happens with all kinds of metaballs and multiple scalings. just mentioning simple example.

  1. Press Shift+A -> Mataball -> Ball
  2. Press S+x while metaball is selected.
  3. Scale metaball an arbitrary amount, so that it becomes an ellipsis.
  4. Press Ctrl+A -> Scale.
  5. The metaball will regress to a ball again.

Additional Information
The reason will most probably be that in source/blender/blenkernel/intern/mball.cc ,
function BKE_mball_transform scale is just a single float value instead of a matrix or a quaternion.

image

**System Information:** Ubuntu 24.04 LTS x86_64 Graphics Card: NVIDIA GeForce RTX 4060 **Blender Version:** Broken: 4.1.1 Release Worked: - **Short description of Issue:** When scaling metaballs not on all axes at the same time (nonuniform scaling) and afterwards applying the scale, the scaling would switch to a uniform scaling distorting the metaball. **Exact steps for others to reproduce the issue:** Happens with all kinds of metaballs and multiple scalings. just mentioning simple example. 1. Press Shift+A -> Mataball -> Ball 2. Press S+x while metaball is selected. 3. Scale metaball an arbitrary amount, so that it becomes an ellipsis. 4. Press Ctrl+A -> Scale. 5. The metaball will regress to a ball again. **Additional Information** The reason will most probably be that in _source/blender/blenkernel/intern/mball.cc_ , function _BKE_mball_transform_ scale is just a single float value instead of a matrix or a quaternion. ![image](/attachments/99c00d62-5ac4-4f4e-88c9-eb874e6a4125)
Philip-Schroeder added the
Type
Design
label 2024-07-07 22:25:08 +02:00
Philip-Schroeder added this to the Modeling project 2024-07-07 22:25:08 +02:00
Hans Goudey added
Status
Needs Triage
Type
Report
and removed
Type
Design
labels 2024-07-08 16:10:08 +02:00
Member

Hi, thanks for the report. Can confirm

Hi, thanks for the report. Can confirm
Pratik Borhade added
Module
Modeling
Status
Confirmed
and removed
Status
Needs Triage
labels 2024-07-09 08:04:10 +02:00

Hello, thank you for triaging my issue.
As I need it quite urgently, would it be ok if I would implement it myself?

As I am new, what would I have to do for that?
Normally I am used to opening a feature-Branch and then after finishing it, creating a pull request to merge into develop.
What we are using at work is basically GitFlow, like this:

https://nvie.com/img/git-model@2x.png

But I was told, in OpenSource repositories I might not have commit rights on the upstream server, not even on my own feature branch.
Therefore I should probably create a fork of the blender-repository and create my feature-branch from that.

Please confirm the process or tell me where I am wrong.


On a side note, I would also like to integrate the procedure into the developers handbook,
probably here in "Guidelines":

https://developer.blender.org/docs/handbook/contributing/#guidelines

Maybe I am missing something but it seems to tell me a lot about commit messages and not how to format the pull requests and so on, but not how to actually start with a new feature, issue or hotfix. Also for people who might not be already into the collaboratoring process that much, maybe an explanation of what a pull request is to begin with, and why we need it and stuff like that would be nice.
The current Guideline look more like a storage tank for different rules than an actual guide.
Hope I have not offended anyone by stating that.

Therefore my suggestion would be that I could document the process in a different feature-branch while I am going through the process for others to have it easier.

Hello, thank you for triaging my issue. As I need it quite urgently, would it be ok if I would implement it myself? As I am new, what would I have to do for that? Normally I am used to opening a feature-Branch and then after finishing it, creating a pull request to merge into develop. What we are using at work is basically GitFlow, like this: https://nvie.com/img/git-model@2x.png But I was told, in OpenSource repositories I might not have commit rights on the upstream server, not even on my own feature branch. Therefore I should probably create a fork of the blender-repository and create my feature-branch from that. Please confirm the process or tell me where I am wrong. *************************************************************************************** On a side note, I would also like to integrate the procedure into the developers handbook, probably here in "Guidelines": https://developer.blender.org/docs/handbook/contributing/#guidelines Maybe I am missing something but it seems to tell me a lot about commit messages and not how to format the pull requests and so on, but not how to actually start with a new feature, issue or hotfix. Also for people who might not be already into the collaboratoring process that much, maybe an explanation of what a pull request is to begin with, and why we need it and stuff like that would be nice. The current Guideline look more like a storage tank for different rules than an actual guide. Hope I have not offended anyone by stating that. Therefore my suggestion would be that I could document the process in a different feature-branch while I am going through the process for others to have it easier.
Member

Hi, first you'd need to setup blender to build locally. For that, refer: https://developer.blender.org/docs/handbook/building_blender/
Re pull request workflow, you would have to first fork the main blender repo then you can create and push commits on "feature" branches. More info at: https://developer.blender.org/docs/handbook/contributing/pull_requests/

Also see for general info for new code contributors: https://developer.blender.org/docs/handbook/new_developers/

Since this is about transform code, @mano-wii might able to help here. If in doubt, feel free to ask in modeling-module

Hi, first you'd need to setup blender to build locally. For that, refer: https://developer.blender.org/docs/handbook/building_blender/ Re pull request workflow, you would have to first fork the main blender repo then you can create and push commits on "feature" branches. More info at: https://developer.blender.org/docs/handbook/contributing/pull_requests/ Also see for general info for new code contributors: https://developer.blender.org/docs/handbook/new_developers/ Since this is about transform code, @mano-wii might able to help here. If in doubt, feel free to ask in [modeling-module](https://blender.chat/channel/modeling-module)

Hello, thank you for clarifying. I have already read the developer handbook, as you see that I was referring to it in the above post, and built blender. So it seems I need to work with forks and do not have commit rights on the original repo. Thank you, that was what I wanted to know. I will create the respective feature branches and get back to you once I am finished for the PR.

Hello, thank you for clarifying. I have already read the developer handbook, as you see that I was referring to it in the above post, and built blender. So it seems I need to work with forks and do not have commit rights on the original repo. Thank you, that was what I wanted to know. I will create the respective feature branches and get back to you once I am finished for the PR.
Member

Hi, yes, make a PR (as mentioned in the developer docs), reviewer will merge your work in origin repo once all the change requests are addressed.

Hi, yes, make a PR (as mentioned in the developer docs), reviewer will merge your work in origin repo once all the change requests are addressed.
Bart van der Braak added
Type
Bug
and removed
Type
Report
labels 2024-08-14 12:57:35 +02:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Viewport & EEVEE
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Asset Browser Project
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Module
Viewport & EEVEE
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Severity
High
Severity
Low
Severity
Normal
Severity
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#124319
No description provided.