Replies: 1 comment 1 reply
-
This isn't the full context, but I'm assuming you forgot to render the DIMENSION entity. From the radial dimension tutorial: import ezdxf
doc = ezdxf.new("R2010", setup=True)
msp = doc.modelspace()
msp.add_circle((0, 0), radius=3)
dim = msp.add_radius_dim(center=(0, 0), radius=3, angle=45, dimstyle="EZ_RADIUS")
dim.render() # <---- VERY VERY VERY important step!!!!!!!!!
doc.saveas("radius_dimension.dxf") For more information read the tutorials about linear DIMENSION and radial DIMENSION. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Try to write code
Result error
Beta Was this translation helpful? Give feedback.
All reactions