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
|
# Copyright (c) 2010-2022 Manfred Moitzi
# License: MIT License
import pytest
import pickle
import math
from ezdxf.math import Vec3, Vec2, Matrix44, ConstructionEllipse, close_vectors
# Import from 'ezdxf.math._bezier4p' to test Python implementation
from ezdxf.math._bezier4p import Bezier4P
from ezdxf.math._bezier4p import cubic_bezier_arc_parameters
from ezdxf.math._bezier4p import cubic_bezier_from_arc
from ezdxf.math._bezier4p import cubic_bezier_from_ellipse
from ezdxf.acc import USE_C_EXT
curve_classes = [Bezier4P]
arc_params_funcs = [cubic_bezier_arc_parameters]
arc_funcs = [cubic_bezier_from_arc]
ellipse_funcs = [cubic_bezier_from_ellipse]
if USE_C_EXT:
from ezdxf.acc.bezier4p import Bezier4P as CBezier4P
from ezdxf.acc.bezier4p import (
cubic_bezier_arc_parameters as cython_arc_parameters,
)
from ezdxf.acc.bezier4p import cubic_bezier_from_arc as cython_arc_func
from ezdxf.acc.bezier4p import (
cubic_bezier_from_ellipse as cython_ellipse_func,
)
curve_classes.append(CBezier4P)
arc_params_funcs.append(cython_arc_parameters)
arc_funcs.append(cython_arc_func)
ellipse_funcs.append(cython_ellipse_func)
DEFPOINTS2D = Vec2.list([(0.0, 0.0), (3.0, 0.0), (7.0, 10.0), (10.0, 10.0)])
DEFPOINTS3D = Vec3.list(
[
(0.0, 0.0, 0.0),
(10.0, 20.0, 20.0),
(30.0, 10.0, 25.0),
(40.0, 10.0, 25.0),
]
)
@pytest.fixture(params=curve_classes)
def bezier(request):
return request.param
@pytest.fixture(params=arc_params_funcs)
def arc_params(request):
return request.param
@pytest.fixture(params=arc_funcs)
def arc(request):
return request.param
@pytest.fixture(params=ellipse_funcs)
def ellipse(request):
return request.param
def test_accepts_2d_points(bezier):
curve = bezier(DEFPOINTS2D)
for index, chk in enumerate(Vec2.generate(POINTS2D)):
assert curve.point(index * 0.1).isclose(chk)
def test_objects_are_immutable(bezier):
curve = bezier(DEFPOINTS3D)
with pytest.raises(TypeError):
curve.control_points[0] = (1, 2, 3)
def test_2d_tangent_computation(bezier):
dbcurve = bezier(DEFPOINTS2D)
for index, chk in enumerate(Vec2.generate(TANGENTS2D)):
assert dbcurve.tangent(index * 0.1).isclose(chk)
def test_approximate(bezier):
curve = bezier(Vec2.list([(0, 0), (0, 1), (1, 1), (1, 0)]))
with pytest.raises(ValueError):
list(curve.approximate(0))
assert list(curve.approximate(1)) == [(0, 0), (1, 0)]
assert list(curve.approximate(2)) == [(0, 0), (0.5, 0.75), (1, 0)]
def test_reverse(bezier):
curve = bezier(DEFPOINTS2D)
vertices = list(curve.approximate(10))
rev_curve = curve.reverse()
rev_vertices = list(rev_curve.approximate(10))
assert close_vectors(reversed(vertices), rev_vertices)
def test_transform_interface(bezier):
curve = bezier(DEFPOINTS3D)
new = curve.transform(Matrix44.translate(1, 2, 3))
assert new.control_points[0] == Vec3(DEFPOINTS3D[0]) + (1, 2, 3)
assert new.control_points[0] != curve.control_points[0], "expected a new object"
def test_transform_returns_always_3d_curves(bezier):
curve = bezier(DEFPOINTS2D)
new = curve.transform(Matrix44.translate(1, 2, 3))
assert len(new.control_points[0]) == 3
def test_flattening(bezier):
curve = bezier(Vec2.list([(0, 0), (1, 1), (2, -1), (3, 0)]))
assert len(list(curve.flattening(1.0, segments=4))) == 5
assert len(list(curve.flattening(0.1, segments=4))) == 7
def test_flattening_for_equal_start_and_end_points(bezier):
curve = bezier(Vec2.list([(0, 0), (1, 0), (1, 1), (0, 0)]))
assert len(list(curve.flattening(0.1, segments=4))) == 5
def test_flattening_with_large_elevation(bezier):
elevation = 1.391912e19
curve = bezier(
Vec3.list(
[
(0, 0, elevation),
(1, 1, elevation),
(2, -1, elevation),
(3, 0, elevation),
]
)
)
assert len(list(curve.flattening(0.1, segments=4))) > 3
def test_flattening_for_equal_start_and_end_points_large_elevation(bezier):
elevation = 1.391912e19
curve = bezier(
Vec3.list(
[
(0, 0, elevation),
(1, 0, elevation),
(1, 1, elevation),
(0, 0, elevation),
]
)
)
assert len(list(curve.flattening(0.1, segments=4))) == 5
@pytest.mark.parametrize(
"z",
[
1e99,
1e79,
1e59,
1e39,
1e19,
1e9,
1e6,
1000,
0,
-1e99,
-1e79,
-1e59,
-1e39,
-1e19,
-1e9,
-1e6,
-1000,
],
)
def test_flattening_big_z_coordinates(bezier, z):
"""Test based on issue #574"""
cp = Vec3.list([
(888, 770, z),
(887, 623, z),
(901, 478, z),
(930, 335, z),
])
curve = bezier(cp)
points = list(curve.flattening(0.01))
# Don't care about the result, it should just not break!
assert len(points) > 0
def test_pickle_support(bezier):
curve = bezier(DEFPOINTS3D)
pickled_curve = pickle.loads(pickle.dumps(curve))
for index in range(4):
assert pickled_curve.control_points[index] == DEFPOINTS3D[index]
def test_cubic_bezier_arc_parameters_computation(arc_params):
parts = list(arc_params(0, math.tau))
assert len(parts) == 4
chk = 4.0 * (math.sqrt(2) - 1.0) / 3.0
sp, cp1, cp2, ep = parts[0]
assert sp.isclose((1, 0))
assert cp1.isclose((1, chk))
assert cp2.isclose((chk, 1))
assert ep.isclose((0, 1))
sp, cp1, cp2, ep = parts[1]
assert sp.isclose((0, 1))
assert cp1.isclose((-chk, 1))
assert cp2.isclose((-1, chk))
assert ep.isclose((-1, 0))
sp, cp1, cp2, ep = parts[2]
assert sp.isclose((-1, 0))
assert cp1.isclose((-1, -chk))
assert cp2.isclose((-chk, -1))
assert ep.isclose((0, -1))
sp, cp1, cp2, ep = parts[3]
assert sp.isclose((0, -1))
assert cp1.isclose((chk, -1))
assert cp2.isclose((1, -chk))
assert ep.isclose((1, 0))
def test_from_circular_arc(arc):
curves = list(arc(end_angle=90))
assert len(curves) == 1
bezier4p = curves[0]
cpoints = bezier4p.control_points
assert len(cpoints) == 4
assert cpoints[0].isclose((1, 0, 0))
assert cpoints[1].isclose((1.0, 0.5522847498307933, 0.0))
assert cpoints[2].isclose((0.5522847498307935, 1.0, 0.0))
assert cpoints[3].isclose((0, 1, 0))
def test_from_circular_full_arc(arc):
curves = list(arc(start_angle=180, end_angle=-180))
assert len(curves) == 4
def test_bezier_curves_from_simple_elliptic_arc(ellipse):
ellipse_ = ConstructionEllipse(
center=(1, 1),
major_axis=(2, 0),
ratio=0.5,
start_param=0,
end_param=math.pi / 2,
)
curves = list(ellipse(ellipse_))
assert len(curves) == 1
p1, p2, p3, p4 = curves[0].control_points
assert p1.isclose((3, 1, 0))
assert p2.isclose((3.0, 1.5522847498307932, 0))
assert p3.isclose((2.104569499661587, 2.0, 0))
assert p4.isclose((1, 2, 0))
def test_bezier_curves_from_complex_elliptic_arc(ellipse):
ellipse_ = ConstructionEllipse(
center=(49.64089977339618, 36.43095770602131, 0.0),
major_axis=(16.69099826506408, 6.96203799241026, 0.0),
ratio=0.173450304570581,
start_param=5.427509144462117,
end_param=7.927025930557775,
)
curves = list(ellipse(ellipse_))
assert curves[0].control_points[0].isclose(ellipse_.start_point)
assert curves[1].control_points[-1].isclose(ellipse_.end_point)
def test_arc_params_issue_708(arc_params):
cpts = list(arc_params(-2.498091544796509, -0.6435011087932844))
assert (
all(
a.isclose(b)
for a, b in zip(
cpts[0],
(
Vec3(-0.8, -0.6, 0.0),
Vec3(-0.6111456180001683, -0.8518058426664423, 0.0),
Vec3(-0.3147573033330529, -1.0, 0.0),
Vec3(6.123233995736766e-17, -1.0, 0.0),
),
)
)
is True
)
assert (
all(
a.isclose(b)
for a, b in zip(
cpts[1],
(
Vec3(6.123233995736766e-17, -1.0, 0.0),
Vec3(0.314757303333053, -1.0, 0.0),
Vec3(0.6111456180001683, -0.8518058426664423, 0.0),
Vec3(0.8, -0.5999999999999999, 0.0),
),
)
)
is True
)
def test_bezier_curves_ellipse_issue_708(ellipse):
ellipse_ = ConstructionEllipse(
center=(1.5, 0.375, 0.0),
major_axis=(0.625, 0.0, 0.0),
ratio=1.0,
start_param=-2.498091544796509,
end_param=-0.6435011087932844,
)
curves = list(ellipse(ellipse_))
assert (
all(
a.isclose(b)
for a, b in zip(
curves[0].control_points,
(
Vec3(0.9999999999999999, 1.6653345369377348e-16, 0.0),
Vec3(1.1180339887498947, -0.15737865166652631, 0.0),
Vec3(1.3032766854168418, -0.2499999999999999, 0.0),
Vec3(1.4999999999999998, -0.25, 0.0),
),
)
)
is True
)
assert (
all(
a.isclose(b)
for a, b in zip(
curves[1].control_points,
(
Vec3(1.4999999999999998, -0.25, 0.0),
Vec3(1.696723314583158, -0.25, 0.0),
Vec3(1.881966011250105, -0.15737865166652654, 0.0),
Vec3(2.0, -5.551115123125783e-17, 0.0),
),
)
)
is True
)
POINTS2D = [
(0.000, 0.000),
(0.928, 0.280),
(1.904, 1.040),
(2.916, 2.160),
(3.952, 3.520),
(5.000, 5.000),
(6.048, 6.480),
(7.084, 7.840),
(8.096, 8.960),
(9.072, 9.720),
(10.00, 10.00),
]
TANGENTS2D = [
(9.0, 0.0),
(9.5400000000000009, 5.3999999999999995),
(9.9600000000000009, 9.6000000000000014),
(10.26, 12.600000000000001),
(10.440000000000001, 14.4),
(10.5, 15.0),
(10.44, 14.399999999999999),
(10.260000000000002, 12.600000000000001),
(9.9599999999999973, 9.5999999999999925),
(9.5399999999999974, 5.399999999999995),
(9.0, 0.0),
]
|