25 lines
462 B
Markdown
25 lines
462 B
Markdown
# make_circle_redge
|
|
|
|
## API Definition
|
|
|
|
```python
|
|
def make_circle_redge(
|
|
center: Tuple[float, float, float],
|
|
radius: ScalarLike,
|
|
normal: Tuple[float, float, float] = (0, 0, 1),
|
|
*,
|
|
tag_prefix: Optional[str] = None,
|
|
) -> Edge
|
|
```
|
|
|
|
*Source: operations.py*
|
|
|
|
## Import Surface
|
|
|
|
- top-level: `from simplecadapi import make_circle_redge`
|
|
|
|
## Description
|
|
|
|
Create a circular edge. `tag_prefix` optionally creates the topology tag
|
|
`<tag_prefix>.edge`.
|