Quick Slice Manager - Complete Documentation¶
PLACE IMAGE OF THE QUICK SLICE MANAGER IN ACTION IN THE 3D VIEWPORT HERE
The Quick Slice Manager is a companion tool to Quick Slice that allows managing and previewing existing boolean cuts. It provides an interactive interface to visualize, toggle, delete, or apply boolean cuts created with Quick Slice, making it easy to refine and finalize complex cutting operations.
Index¶
- What is Quick Slice Manager?
- Workflow
- Shortcuts and Access
- Functionality Explanation
- Cut Preview
- Cut Plane Visualization
- Managing Multiple Cuts
- Applying and Finalizing Cuts
- Key Code Snippets
- Suggested Images
What is Quick Slice Manager?¶
Quick Slice Manager is a tool that helps you manage boolean cuts created with Quick Slice. It provides: - Interactive visualization of cut planes - Preview of the geometry that will be removed by each cut - Ability to toggle, delete, or apply individual cuts - Easy navigation between multiple cuts
PLACE IMAGE OF THE QUICK SLICE MANAGER INTERFACE WITH ANNOTATIONS HERE
Workflow¶
- Access the Manager:
- Hold Alt while clicking Quick Slice in the pie menu (Shift+W)
-
Or use Alt+Click on the Quick Slice option
-
Navigate Between Cuts:
- Use mouse wheel to cycle through existing cuts
- Each cut is highlighted in sequence
-
Cut planes are shown with different colors for better visibility
-
Manage Cuts:
- Q: Toggle cut plane visibility
- V: Toggle preview of cut geometry
- W: Delete selected cut
- E: Apply selected cut
-
ESC: Exit manager
-
Preview and Finalize:
- Preview shows exactly what will be removed by each cut
- Apply cuts when satisfied with the result
- Delete unwanted cuts
- Exit manager when done
PLACE GIF OR IMAGE SEQUENCE OF THE MANAGER WORKFLOW HERE
Shortcuts and Access¶
- Access: Alt+Click on Quick Slice in pie menu
- Navigation:
- Mouse wheel: Switch between cuts
- Q: Toggle plane visibility
- V: Toggle cut preview
- W: Delete selected cut
- E: Apply selected cut
- ESC: Exit manager
Functionality Explanation¶
Cut Preview¶
- Shows the exact geometry that will be removed by the cut
- Updates in real-time when switching between cuts
- Blue semi-transparent visualization for clear understanding
- Helps verify cut results before applying
Cut Plane Visualization¶
- Active cut plane shown in red
- Other cut planes shown in gray
- Adjustable visibility for better workspace organization
- Visual indicators for cut direction
Managing Multiple Cuts¶
- Easy navigation between cuts with mouse wheel
- Individual control over each cut's visibility
- Ability to delete unwanted cuts
- Preview multiple cuts simultaneously
Applying and Finalizing Cuts¶
- Apply individual cuts to make them permanent
- Delete cuts that are no longer needed
- Maintain non-destructive workflow until final approval
- Easy exit when management is complete
Key Code Snippets¶
# Example of cut preview setup
def draw_cut_preview(self, context):
if not self.ghost_preview_mesh:
return
shader = gpu.shader.from_builtin('UNIFORM_COLOR')
gpu.state.blend_set('ALPHA')
# Blue semi-transparent color for removed geometry
ghost_color = (0.3, 0.7, 1.0, 0.4)
For technical details and implementation, see the source code documentation in the Technical Reference section.
Suggested Images¶
- PLACE IMAGE OF THE SIDEBAR PANEL WITH THE "Quick Slice Manager" OPTION IN FOCUS HERE
- PLACE GIF OR SEQUENCE OF IMAGES OF THE CUTTING FLOW HERE
- PLACE IMAGE OF MULTIPLE CUT PLANES VISUALIZATION HERE
- PLACE IMAGE OF FINAL RESULT WITH SEPARATED OBJECTS HERE