Replies: 2 comments 3 replies
-
I don't understand your question. Please, provide more details. |
Beta Was this translation helpful? Give feedback.
-
The next version of ezdxf, v0.16b0 is already available on PyPI, has a new The calculation of bounding boxes for CIRCLE, ARC, ELLIPSE and SPLINE is based on curve flattening to a certain precision, because this works for all cases in 2D and 3D, but has the disadvantage, that is is slow and may not yield the perfect result. It is not guaranteed to find the exact extreme points of a curve but the result will be close. from ezdxf import bbox
doc = ... # your DXF document
entities = ... # collect the entities
box = bbox.extents(entities)
# or use the whole model space
box = bbox.extents(doc.modelspace()) |
Beta Was this translation helpful? Give feedback.
-
Good morning
It is possible to make a point control on an arc just like a spline ?
Beta Was this translation helpful? Give feedback.
All reactions