Skip to main content

make_wire_from_sketch_rwire

Kind: Function
Domain: Sketch
Canonical import: from cadflow import make_wire_from_sketch_rwire

Signature

def make_wire_from_sketch_rwire(sketch: 'Sketch', profile: 'int | str' = 0, *, require_fully_constrained: 'bool' = False, strict: 'bool' = True, tolerance: 'float' = 1e-07, max_iterations: 'int' = 80) -> 'Wire'

Description

Promote a sketch profile to a concrete wire, solving internally.

Parameters

NameTypeRequiredDefaultSource description
sketch'Sketch'yes-Not explicitly described in the source docstring.
profile'int | str'no0Not explicitly described in the source docstring.
require_fully_constrained'bool'noFalseNot explicitly described in the source docstring.
strict'bool'noTrueNot explicitly described in the source docstring.
tolerance'float'no1e-07Not explicitly described in the source docstring.
max_iterations'int'no80Not explicitly described in the source docstring.

Returns

Type: 'Wire'

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Behavior and constraints

  • The contract below is generated from the current public runtime signature. Check domain notes for ownership and workflow constraints.

Import check

from cadflow import make_wire_from_sketch_rwire

See also