1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
# Copyright (c) 2021-2022, Manfred Moitzi
# License: MIT License
from typing import Optional
import pathlib
import math
import ezdxf
from ezdxf.math import Vec3, UCS, NULLVEC
import logging
# ------------------------------------------------------------------------------
# This example shows how to use angular dimension.
#
# tutorial: https://ezdxf.mozman.at/docs/tutorials/angular_dimension.html
# ------------------------------------------------------------------------------
logging.basicConfig(level="WARNING")
DXFVERSION = "R2013"
CWD = pathlib.Path("~/Desktop/Outbox").expanduser()
if not CWD.exists():
CWD = pathlib.Path(".")
# Default text attributes:
TEXT_ATTRIBS = {
"height": 0.25,
"style": ezdxf.options.default_dimension_text_style,
}
DIM_TEXT_STYLE = ezdxf.options.default_dimension_text_style
# Discarding the dimension rendering is possible for BricsCAD,
# but it is incompatible to AutoCAD -> error
BRICSCAD = False
def locations():
def location(offset: Vec3, flip: float):
base = Vec3(0, 5) + offset
p1 = Vec3(-4, 3 * flip) + offset
p2 = Vec3(-1, 0) + offset
p4 = Vec3(4, 3 * flip) + offset
p3 = Vec3(1, 0) + offset
return base, (p1, p2), (p3, p4)
return [
location(NULLVEC, +1),
location(Vec3(10, 0), -1),
]
def angular_2l_default():
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
for base, line1, line2 in locations():
msp.add_line(line1[0], line1[1])
msp.add_line(line2[0], line2[1])
msp.add_angular_dim_2l(
base=base, line1=line1, line2=line2, dimstyle="EZ_CURVED"
).render(discard=BRICSCAD)
doc.set_modelspace_vport(height=30)
doc.saveas(CWD / f"dim_angular_2l_{DXFVERSION}.dxf")
def angular_cra_default(
distance: float,
filename: str,
show_angle=True,
override: dict = None,
):
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
radius = 5
data = [
[Vec3(0, 0), 60, 120],
[Vec3(10, 0), 300, 240],
[Vec3(20, 0), 240, 300],
[Vec3(30, 0), 300, 30],
]
if override is None:
override = dict()
for dimtad, offset in [(1, (0, 20)), (0, (0, 0)), (4, (0, -20))]:
for center, start_angle, end_angle in data:
center += Vec3(offset)
override["dimtad"] = dimtad
if show_angle:
add_lines(msp, center, radius, start_angle, end_angle)
# Default DimStyle EZ_CURVED:
# - angle units = degree
# - scale 1: 100
# - closed filled arrow, size = 0.25
# - text location above dimension line
#
# center:
# center of angle
# radius:
# distance from center to the start of the extension lines
# distance:
# distance from start of the extension lines to the dimension line
# start_angle:
# start angle in degrees
# end_angle:
# end angle in degrees
# The measurement is always done from start_angle to end_angle in
# counter clockwise orientation. This does not always match the result
# in CAD applications!
dim = msp.add_angular_dim_cra(
center=center,
radius=radius,
start_angle=start_angle,
end_angle=end_angle,
distance=distance,
override=override,
)
# Necessary second step, to create the BLOCK entity with the DIMENSION
# geometry. Ezdxf supports DXF R2000 attributes for DXF R12 rendering,
# but they have to be applied by the DIMSTYLE override feature, this
# additional attributes are not stored in the XDATA section of the
# DIMENSION entity, they are just used to render the DIMENSION entity.
# The return value `dim` is not a DIMENSION entity, instead a
# DimStyleOverride object is returned, the DIMENSION entity is stored
# as dim.dimension, see also ezdxf.override.DimStyleOverride class.
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=70)
doc.saveas(CWD / f"{filename}_{DXFVERSION}.dxf")
def angular_cra_default_outside():
"""Outside means: the dimension line is farther away from the center than
the extension line start points.
"""
angular_cra_default(
distance=2.0,
filename="dim_angular_cra_outside",
show_angle=True,
)
def angular_cra_default_outside_fixed_extension_length():
"""Outside means: the dimension line is farther away from the center than
the extension line start points.
"""
angular_cra_default(
distance=2.0,
filename="dim_angular_cra_outside_fxl",
show_angle=True,
override={
"dimfxlon": 1, # use fixed length extension lines
"dimexe": 0.5, # length "above" the dimension line
"dimfxl": 1.0, # length "below" the dimension line
},
)
def angular_cra_default_inside():
"""Inside means: the dimension line is closer to the center than
the extension line start points.
"""
angular_cra_default(
distance=-2.0,
filename="dim_angular_cra_inside",
show_angle=False,
)
def angular_cra_default_inside_fixed_extension_length():
"""Inside means: the dimension line is closer to the center than
the extension line start points.
"""
angular_cra_default(
distance=-2.0,
filename="dim_angular_cra_inside_fxl",
show_angle=False,
override={
"dimfxlon": 1, # use fixed length extension lines
"dimexe": 0.5, # length "above" the dimension line
"dimfxl": 1.0, # length "below" the dimension line
},
)
def angular_3p_default(distance: float = 2.0):
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
radius = 5
data = [
[Vec3(0, 0), 60, 120],
[Vec3(10, 0), 300, 240],
[Vec3(20, 0), 240, 300],
]
for dimtad, offset in [(1, (0, 20)), (0, (0, 0)), (4, (0, -20))]:
for center, start_angle, end_angle in data:
center += Vec3(offset)
dir1 = Vec3.from_deg_angle(start_angle)
dir2 = Vec3.from_deg_angle(end_angle)
# calculate defpoints from parameters of the "cra" example:
p1 = center + dir1 * radius
p2 = center + dir2 * radius
base = center + dir1.lerp(dir2) * (radius + distance)
add_lines(msp, center, radius, start_angle, end_angle)
msp.add_angular_dim_3p(
base,
center,
p1,
p2,
override={
"dimtad": dimtad,
"dimtxt": 1,
"dimasz": 1,
"dimgap": 0.25,
},
).render(discard=BRICSCAD)
doc.set_modelspace_vport(height=70)
doc.saveas(CWD / f"dim_angular_3p_{DXFVERSION}.dxf")
def add_lines(
msp, center: Vec3, radius: float, start_angle: float, end_angle: float
):
attribs = {"color": 7}
start_point = center + Vec3.from_deg_angle(start_angle) * radius
end_point = center + Vec3.from_deg_angle(end_angle) * radius
msp.add_line(center, start_point, dxfattribs=attribs)
msp.add_line(center, end_point, dxfattribs=attribs)
def angular_3d():
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
for base, line1, line2 in locations():
ucs = UCS(origin=(base.x, base.y, 0)).rotate_local_x(math.radians(45))
msp.add_line(line1[0], line1[1]).transform(ucs.matrix)
msp.add_line(line2[0], line2[1]).transform(ucs.matrix)
dim = msp.add_angular_dim_2l(
base=base, line1=line1, line2=line2, dimstyle="EZ_CURVED"
)
dim.render(discard=BRICSCAD, ucs=ucs)
doc.set_modelspace_vport(height=30)
doc.saveas(CWD / f"dim_angular_3d_{DXFVERSION}.dxf")
def angular_units_tol_limits():
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
radius = 5
distance = 2
data = [
[Vec3(0, 0), 60, 120, 0, 0],
[Vec3(10, 0), 300, 240, 0, 0],
[Vec3(20, 0), 240, 300, 1, 0], # tolerance
[Vec3(30, 0), 300, 30, 0, 1], # limits
]
for dimaunit, offset in [
[0, Vec3(0, 0)],
[1, Vec3(0, 20)],
[2, Vec3(0, 40)],
[3, Vec3(0, 60)],
]:
for center, start_angle, end_angle, dimtol, dimlim in data:
center += offset
add_lines(msp, center, radius, start_angle, end_angle)
dim = msp.add_angular_dim_cra(
center,
radius,
start_angle,
end_angle,
distance,
override={
"dimaunit": dimaunit,
"dimtol": dimtol,
"dimtp": 1.0,
"dimtm": 2.0,
"dimlim": dimlim,
},
)
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=70)
doc.saveas(CWD / f"dim_angular_units_tol_limits_{DXFVERSION}.dxf")
def add_angle_dim(
msp,
center: Vec3,
angle: float,
delta: float,
radius: float,
distance: float,
text_rotation: Optional[float],
override: dict,
):
start_angle = angle - delta
end_angle = angle + delta
add_lines(msp, center, radius, start_angle, end_angle)
dim = msp.add_angular_dim_cra(
center,
radius,
start_angle,
end_angle,
distance,
text_rotation=text_rotation,
override=override,
)
return dim
def measure_fixed_angle(angle: float):
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
x_dist = 15
for dimtad, y_dist in [[0, 0], [1, 20], [4, 40]]:
for count in range(8):
dim = add_angle_dim(
msp,
center=Vec3(x_dist * count, y_dist),
angle=45.0 * count,
delta=angle / 2.0,
radius=3.0,
distance=1.0,
text_rotation=None,
override={"dimtad": dimtad},
)
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=100, center=(x_dist * 4, 20))
doc.saveas(CWD / f"dim_angular_deg_{angle:.0f}_{DXFVERSION}.dxf")
def usr_location_absolute(angle: float, rotation: float = None):
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
x_dist = 15
radius = 3.0
distance = 1.0
for dimtad, y_dist, leader in [
[0, 0, False],
[0, 20, True],
[4, 40, True],
]:
for count in range(8):
center = Vec3(x_dist * count, y_dist)
main_angle = 45.0 * count
dim = add_angle_dim(
msp,
center=center,
angle=main_angle,
delta=angle / 2.0,
radius=radius,
distance=distance,
text_rotation=rotation,
override={"dimtad": dimtad},
)
# user location in WCS coordinates, absolute location:
usr_location = center + Vec3.from_deg_angle(
main_angle, radius + distance * 2.0
)
dim.set_location(usr_location, leader=leader)
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=100, center=(x_dist * 4, 40))
rstr = ""
if rotation is not None:
rstr = f"rot_{rotation}_"
doc.saveas(CWD / f"dim_angular_usr_loc_absolute_{rstr}_{DXFVERSION}.dxf")
def usr_location_relative(angle: float, rotation: float = None):
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
x_dist = 10
radius = 3.0
distance = 1.0
for dimtad, y_dist, leader in [
[0, 0, False],
[0, 10, True],
[4, 20, True],
]:
for count in range(8):
center = Vec3(x_dist * count, y_dist)
main_angle = 45.0 * count
dim = add_angle_dim(
msp,
center=center,
angle=main_angle,
delta=angle / 2.0,
radius=radius,
distance=distance,
text_rotation=rotation,
override={"dimtad": dimtad},
)
# user location relative to center of dimension line:
usr_location = Vec3.from_deg_angle(main_angle, 2.0)
dim.set_location(usr_location, leader=leader, relative=True)
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=100, center=(x_dist * 4, 40))
rstr = ""
if rotation is not None:
rstr = f"rot_{rotation}_"
doc.saveas(CWD / f"dim_angular_usr_loc_relative_{rstr}_{DXFVERSION}.dxf")
def show_all_arrow_heads():
doc = ezdxf.new(DXFVERSION, setup=True)
msp = doc.modelspace()
x_dist = 4.0
y_dist = 5.0
for x, arrow_name in enumerate(sorted(ezdxf.ARROWS.__all_arrows__)):
for y, angle in enumerate((3.0, 30.0)):
center = Vec3(x * x_dist, y * y_dist)
dim = add_angle_dim(
msp,
center=center,
angle=90.0,
delta=angle / 2.0,
radius=3.0,
distance=1.0,
text_rotation=None,
override={"dimblk": arrow_name},
)
dim.render(discard=BRICSCAD)
doc.set_modelspace_vport(height=40, center=(50, 5))
doc.saveas(CWD / f"dim_angular_all_arrows_{DXFVERSION}.dxf")
if __name__ == "__main__":
angular_cra_default_outside()
angular_cra_default_outside_fixed_extension_length()
angular_cra_default_inside()
angular_cra_default_inside_fixed_extension_length()
angular_3p_default()
angular_2l_default()
angular_3d()
angular_units_tol_limits()
measure_fixed_angle(3.0)
measure_fixed_angle(6.0)
measure_fixed_angle(9.0)
usr_location_absolute(6)
usr_location_absolute(6, rotation=15)
usr_location_relative(30)
usr_location_relative(30, rotation=345)
show_all_arrow_heads()
|