Pular para o conteúdo principal

raygeo.ops.assembly.profile

Functions

profile_inner()

profile_inner(
cleared: ops.cut.cleared_area.ClearedArea,
boundary: list[tuple[float, float]],
islands: list[list[tuple[float, float]]] = [],
tool_radius: float = 3,
step_over: float = 1.5,
step_length: float = 0.6,
target_z: float = -5,
safe_z: float = 2,
wall_margin: float = 0,
stock_to_leave: float = 0,
cut_feed_rate: int = 1000,
cut_power: float = 0,
start_pos: tuple[float, float] | None = None,
cut_direction: str = 'ccw',
engagement_area_threshold: float = 0,
engagement_angle_threshold: float = 3.141592653589793,
trace_path: str | None = None,
) -> ops.assembly.result.AssemblyResult

Profile the inner boundary of a pocket, around islands.

Walks a tool around the inset boundary (offset inward by tool radius) and around accessible islands, so that the tool clears the material along the pocket walls and around each island. Returns an AssemblyResult with the profiling move sequence.

ParameterTypeDescription
clearedops.cut.cleared_area.ClearedAreaCleared area tracker.
boundarylist[tuple[float, float]]Outer boundary polygon as (x, y) pairs.
islandslist[list[tuple[float, float]]] = []List of island (hole) polygons (default []).
tool_radiusfloat = 3Tool radius in mm.
step_overfloat = 1.5Radial step-over between passes (mm).
step_lengthfloat = 0.6Forward step length in mm.
target_zfloat = -5Cutting depth (Z).
safe_zfloat = 2Safe (rapid) Z height.
wall_marginfloat = 0Extra distance to keep from the wall (mm).
stock_to_leavefloat = 0Stock left on wall for rough pass (mm, default 0.0).
cut_feed_rateint = 1000Feed rate in mm/min.
cut_powerfloat = 0Spindle power (0.0–1.0).
start_postuple[float, float] | None = NoneOptional override start (x, y) (default: first boundary vertex).
cut_directionstr = 'ccw'"cw" or "ccw" (default "ccw").
engagement_area_thresholdfloat = 0Overengagement area threshold (mm², 0 = auto).
engagement_angle_thresholdfloat = 3.141592653589793Overengagement angle threshold (rad, default π).
trace_pathstr | None = NoneOptional path to write a binary trace file (default None).
Returnsops.assembly.result.AssemblyResultAn AssemblyResult with the profiling path.

profile_inner on a square pocket with island — 2D: boundary, island, offset walks, cuts (turbo).

profile_inner on a square pocket with island — 2D: boundary, island, offset walks, cuts (turbo).

profile_inner with two accessible islands — nearest-neighbour order via turbo gradient.

profile_inner with two accessible islands — nearest-neighbour order via turbo gradient.

profile_inner on an L-shaped pocket with island — 3D: cut path at cut_z, rapids at safe_z.

profile_inner on an L-shaped pocket with island — 3D: cut path at cut_z, rapids at safe_z.

profile_inner skips an island when the channel between island and wall is too narrow.

profile_inner skips an island when the channel between island and wall is too narrow.

Two-pass inner profiling: rough (orange) + finish (red) on same ClearedArea.

Two-pass inner profiling: rough (orange) + finish (red) on same ClearedArea.

profile_outer()

profile_outer(
cleared: ops.cut.cleared_area.ClearedArea,
boundary: list[tuple[float, float]],
tool_radius: float,
step_over: float,
step_length: float,
target_z: float,
safe_z: float,
wall_margin: float,
cut_feed_rate: int,
cut_power: float,
start_pos: tuple[float, float] | None = None,
cut_direction: str = 'ccw',
stock_to_leave: float = 0,
engagement_area_threshold: float = 0,
engagement_angle_threshold: float = 3.141592653589793,
trace_path: str | None = None,
) -> ops.assembly.result.AssemblyResult

Profile the outer boundary of a pocket.

Walks a tool around the grown boundary (offset outward by tool radius). The path stays approximately one tool radius outside the original boundary, removing any excess stock on the outer side. Returns an AssemblyResult with the profiling move sequence.

ParameterTypeDescription
clearedops.cut.cleared_area.ClearedAreaCleared area tracker.
boundarylist[tuple[float, float]]Outer boundary polygon as (x, y) pairs.
tool_radiusfloatTool radius in mm.
step_overfloatRadial step-over between passes (mm).
step_lengthfloatForward step length in mm.
target_zfloatCutting depth (Z).
safe_zfloatSafe (rapid) Z height.
wall_marginfloatExtra distance to keep from the wall (mm).
cut_feed_rateintFeed rate in mm/min.
cut_powerfloatSpindle power (0.0–1.0).
start_postuple[float, float] | None = NoneOptional override start (x, y) (default: first boundary vertex).
cut_directionstr = 'ccw'"cw" or "ccw" (default "ccw").
stock_to_leavefloat = 0Stock left on wall for rough pass (mm, default 0.0).
engagement_area_thresholdfloat = 0Overengagement area threshold (mm², 0 = auto).
engagement_angle_thresholdfloat = 3.141592653589793Overengagement angle threshold (rad, default π).
trace_pathstr | None = NoneOptional path to write a binary trace file (default None).
Returnsops.assembly.result.AssemblyResultAn AssemblyResult with the profiling path.

profile_outer on a rect pocket — 3D (left) and 2D top-down with offset tool-centre polygon (right).

profile_outer on a rect pocket — 3D (left) and 2D top-down with offset tool-centre polygon (right).

profile_outer on a circular boundary — smooth walk around the offset circle.

profile_outer on a circular boundary — smooth walk around the offset circle.

profile_outer on an L-shaped pocket with miter join at the concave corner.

profile_outer on an L-shaped pocket with miter join at the concave corner.

Two-pass profiling: rough (with stock, orange) + finish (red) on the same ClearedArea.

Two-pass profiling: rough (with stock, orange) + finish (red) on the same ClearedArea.