Auto Mirror addon irreversibly deletes geometry in close proximity to the mirror line #104489
Labels
No Label
Interest
Animation & Rigging
Interest
Blender Cloud
Interest
Collada
Interest
Core
Interest
Documentation
Interest
Eevee & Viewport
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
Import and Export
Interest
Modeling
Interest
Modifiers
Interest
Nodes & Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds, Tests & Devices
Interest
Python API
Interest
Rendering & Cycles
Interest
Sculpt, Paint & Texture
Interest
Translations
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Meta
Good First Issue
Meta
Papercut
Module
Add-ons (BF-Blender)
Module
Add-ons (Community)
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
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
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-addons#104489
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
System Information
Operating system: Windows-10-10.0.17763-SP0 64 Bits
Graphics card: Intel(R) HD Graphics 4600 Intel 4.3.0 - Build 20.19.15.5171
Blender Version
Broken: version: 3.4.0, branch: blender-v3.4-release, commit date: 2022-12-06 18:46, hash:
rBa95bf1ac01be
Worked: (newest version of Blender that worked as expected)
Addon Information
Name: Auto Mirror (2, 5, 3)
Author: Lapineige
Short description of error
When I use this addon to apply mirror and the object has details in range of approximately 1mm from the center, all those details are lost and cannot be restored by turning off or turning down merge parameter. More so - even the detail loss seems to be inconsistent as the exact same details on the back of the model get merged in a completely different fashion than on the front of the model
Exact steps for others to reproduce the error
• Install the "mesh: Auto Mirror" addon (If it won't be installed in the file, I'm not sure how this is saved)
• Select the model named "not applied" from the attached file
• Press automirror button on the edit tab without changing the default settings(x-axis selected, positive orientation)
• On the front of the model two grooves near the center get deleted, and on the back - the whole central section gets merged into one point (The described result is also shown on the model named "applied" in the attached file)
Hi.
I can confirm that this is still indeed the case with Blender 3.6.7 using the updated Addon version 2.5.4. I'm assuming that the desired output is an object that is mirrored about the twin groves.
As pointed out the issue is with verts that are close to the mirror. By design the minimum value of the "Threshold" is 0.001 or 1mm. This is a fixed value and does not consider the scale of the object item being mirrored.
I believe that the inconsistency comes from either having detail behind the mirror which gets merged in the loop cut step or more likely simply a rounding error due to limited precision which Blender uses to store the verts location in 3d space.
Work-around Options:
Edit the Addon file and change the minimum value to something smaller, in these lines:
threshold : FloatProperty(
default= 0.001, min= 0.001,
description="Vertices closer than this distance are merged on the loopcut",
)
Change the scale of the object, making it larger, then apply the mirroring, once complete convert back to the desired size.
Possible enhancement options for this addon: