particle system volume grid particles out of volume #52732
Labels
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
5 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#52732
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
OS: Ubuntu 16.04.2 LTS
GPU: TITAN X (Pascal)
CPU: Intel(R) Core(TM) i7-6700K
Blender Version
Broken: 2.78 and 2.79
Worked: unknown
Short description of error
Lines of particles appear from -x to x from the mesh with a high-poly (69451 faces) mesh. After decimating the mesh the problem disappears.
Exact steps for others to reproduce the error
1 - Download a high poly STL (e.g. the stanford bunny (69451 faces) )
http://www-static.cc.gatech.edu/data_files/large_models/bunny.ply.gz
2 - Import mesh
3 - Add a particle system and emit from volume grid.
4 - Set emitter start and end to 0, resolution to 15, physics to NO and size to 0.005
5 - Duplicate
6 - Add a decimation modifier and decimate to 0.01 (693 faces) and apply
Related task: https://developer.blender.org/T46481
particleVolumeGridProblem.blend
Changed status to: 'Open'
Added subscriber: @xavisomah
particle system volume gridto particle system volume grid particles out of volumeAdded subscribers: @mont29, @Sergey
The issue here is caused by failed
isect_axial_line_segment_tri_v3
. This patch will allow to catch that case: P529. What i'm not sure about, is why to use axial here? At least, for volume distribution. Would think something like this will make it: P530. This patch solves this issue.@mont29, mind having a second pair of eyes here? :)
There are still issues on other grid resolutions, but those are caused by non-manifold nature of the model.
@Sergey no idea really why that intersection algo was chosen, would bet it was best available in our code at the time. ;)
So if watertight works better, P530 looks totally fine to me.
@mont29, ok, will steal the report back to self, run additional tests and commit fix.
This issue was referenced by
c75bd25cd8
Changed status from 'Open' to: 'Resolved'
Added subscriber: @gimble
OS: Ubuntu 16.04
Is this truly fixed, or am I overlooking something obvious?
It seems that now no particles appear, unless you press 'invert grid'
I double checked to be sure. The following blend file works "sort of" in 2.79 official - particles appear, but some are outside the "watermelon" shape object.
volume_grid_test.blend
Made a mistake in original patch which broke quad faces. Fixed in
95a8e73d40
.