We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ShirshovDIM/retopoflow_blender_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
41_analyze_cylindrical_structure.feature•1.5 KiB
Feature: Analyze Cylindrical Structure
As a retopology agent
I need to analyze cylindrical mesh regions
So that I can understand loop structure and optimize segment count
Background:
Given Blender is running with MCP addon connected
And a mesh object exists in the scene
Scenario: Analyze cylinder segments from selected edge loop
Given a cylindrical mesh region with an edge loop selected
When I call analyze_cylindrical_structure
Then the result should contain segment_count
And the result should contain loop_vertex_count
And the result should contain axis information
Scenario: Detect edge loop spacing
Given a cylinder with multiple edge loops
When I call analyze_cylindrical_structure with analyze_spacing True
Then the result should contain edge_loop_count
And the result should contain average_spacing
Scenario: Calculate optimal segment count
Given a cylinder with non-optimal segment count
When I call analyze_cylindrical_structure
Then the result should suggest optimal_segments based on curvature
Scenario: No cylindrical structure detected
Given a flat planar mesh region
When I call analyze_cylindrical_structure
Then the result should indicate no cylindrical structure found
Scenario: Analyze from vertex selection
Given a vertex on a cylindrical region is selected
When I call analyze_cylindrical_structure with mode "VERTEX"
Then the tool should find the containing edge loop
And analyze the cylindrical structure