Problem with small scales and great distances #76673
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#76673
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
Graphics card: Gforce GTX 960M
Blender Version
Broken: v2.82a
(example: 2.79b release)
(example: 2.80, edbf15d3c044, blender2.8, 2018-11-28, as found on the splash screen)
Worked: (optional)
Short description of error
When moving an object too far and rescaling it too small, the object becomes blurry and unusable for a render.
Context: I'm trying to make the Earth-Moon system to scale with a satellite orbiting the Moon, and the satellite always appears blurry.
Exact steps for others to reproduce the error
Basic cube at the beginning
Move to 10000m
Rescale all sides to 0.001
Clipstart at 0.001 (otherwise you can't see the cube)
and when you zoom it is blurry
I have attached the file I'm using to show the bug, but it works with the default cube.
Based on the default startup or an attached .blend file (as simple as possible).
Orion_bug.blend
Added subscriber: @ticklina
Added subscriber: @Alaska
Changed status from 'Needs Triage' to: 'Archived'
This is a limitation with the precision of computer graphics. Here's a blog discussing precision issues .
A short explanation of it is that computers can only track the precision of numbers to a certain point. As your object (the satellite) is quite small and it's very far away from the origin (10000m), the computer is unable to currently decided where the object is and so it renders as a glitchy mess or in your case because you're not that far away from the origin, as a blurry object.
The only real fix that I know of, and I'm not a programmer, is to do some number conversions and trickery to allow greater precision. But this is very slow and something you wouldn't want to do for real time graphics like the viewport in Blender. The other option is to get a processor that can natively supports greater precision and then get a version of Blender that supports that processor. At the moment, there is no consumer processor that can handle the precision needed for your project. So you'll have to work around the limitations of computer graphics by using different scale and to work with larger objects closer to the origin (0,0,0).