Skip to main content

create_point

Kind: Function
Domain: Modeling and geometry
Canonical import: from cadflow import create_point

Signature

def create_point(x: 'ScalarLike', y: 'ScalarLike', z: 'ScalarLike') -> 'Vertex'

Description

Create a point in 3D space and return it as a vertex.

Other public imports

  • from cadflow import make_point_rvertex

Parameters

NameTypeRequiredDefaultSource description
x'ScalarLike'yes-Not explicitly described in the source docstring.
y'ScalarLike'yes-Not explicitly described in the source docstring.
z'ScalarLike'yes-Not explicitly described in the source docstring.

Returns

Type: 'Vertex'

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 create_point

See also