Skip to main content

inspect_sketch_rsketchresult

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

Signature

def inspect_sketch_rsketchresult(sketch: 'Sketch', *, require_fully_constrained: 'bool' = False, strict: 'bool' = True, tolerance: 'float' = 1e-07, max_iterations: 'int' = 80) -> 'SketchSolveResult'

Description

Inspect sketch constraints by running the solver without recording graph nodes.

Parameters

NameTypeRequiredDefaultSource description
sketch'Sketch'yes-Not 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: 'SketchSolveResult'

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 inspect_sketch_rsketchresult

See also