updates to Pattern.polygonize()
This commit is contained in:
parent
68ac593270
commit
c515ada2f8
@ -12,7 +12,7 @@ from numpy.typing import NDArray, ArrayLike
|
|||||||
# .visualize imports matplotlib and matplotlib.collections
|
# .visualize imports matplotlib and matplotlib.collections
|
||||||
|
|
||||||
from .ref import Ref
|
from .ref import Ref
|
||||||
from .shapes import Shape, Polygon
|
from .shapes import Shape, Polygon, DEFAULT_POLY_NUM_VERTICES
|
||||||
from .label import Label
|
from .label import Label
|
||||||
from .utils import rotation_matrix_2d, annotations_t
|
from .utils import rotation_matrix_2d, annotations_t
|
||||||
from .error import PatternError
|
from .error import PatternError
|
||||||
@ -210,7 +210,7 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable):
|
|||||||
|
|
||||||
def polygonize(
|
def polygonize(
|
||||||
self,
|
self,
|
||||||
num_points: int | None = None,
|
num_vertices: int | None = DEFAULT_POLY_NUM_VERTICES,
|
||||||
max_arclen: float | None = None,
|
max_arclen: float | None = None,
|
||||||
) -> Self:
|
) -> Self:
|
||||||
"""
|
"""
|
||||||
@ -218,7 +218,7 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable):
|
|||||||
Arguments are passed directly to `shape.to_polygons(...)`.
|
Arguments are passed directly to `shape.to_polygons(...)`.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
num_points: Number of points to use for each polygon. Can be overridden by
|
num_vertices: Number of points to use for each polygon. Can be overridden by
|
||||||
`max_arclen` if that results in more points. Optional, defaults to shapes'
|
`max_arclen` if that results in more points. Optional, defaults to shapes'
|
||||||
internal defaults.
|
internal defaults.
|
||||||
max_arclen: Maximum arclength which can be approximated by a single line
|
max_arclen: Maximum arclength which can be approximated by a single line
|
||||||
@ -229,7 +229,7 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable):
|
|||||||
"""
|
"""
|
||||||
old_shapes = self.shapes
|
old_shapes = self.shapes
|
||||||
self.shapes = list(chain.from_iterable((
|
self.shapes = list(chain.from_iterable((
|
||||||
shape.to_polygons(num_points, max_arclen)
|
shape.to_polygons(num_vertices, max_arclen)
|
||||||
for shape in old_shapes)))
|
for shape in old_shapes)))
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user