cutting
pleat.cutting ¶
Cut half-edge graphs along halfplane boundaries or polygon regions.
The main entry point is :func:cut_out_poly, which inserts new vertices and
edges where a polygon crosses an existing graph and (optionally) deletes the
faces lying outside the polygon. Class :class:Halfplane (and its
:class:CuttingRegion base) is used by :mod:pleat.overlap to model
folded-face stacking constraints.
Low-level numba-accelerated helpers (:func:pointinpolygon,
:func:parallelpointinpolygon, :func:polygon_line_segment_intersections,
:func:get_potential_intersections_2, :func:get_ordered_crossings) sit
beneath the public API and are reused by other modules.
CuttingRegion ¶
Halfplane ¶
Bases: CuttingRegion
Open halfplane {x : (x - p) . v > 0}, used as a cutting region.
Construct from a point on the boundary and an outward-pointing normal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
p
|
ndarray
|
Any point on the boundary line. |
required |
v
|
ndarray
|
Normal vector pointing into the kept halfplane (normalised internally). |
required |
Source code in pleat/cutting.py
signed_distance ¶
intersections ¶
Intersections of the boundary line with each segment in line_segments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
line_segments
|
ndarray
|
Shape |
required |
Source code in pleat/cutting.py
pointinpolygon ¶
Numba-jitted point-in-polygon test (ray casting).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
float
|
Query x coordinate. |
required |
y
|
float
|
Query y coordinate. |
required |
poly
|
ndarray
|
|
required |
Returns:
| Type | Description |
|---|---|
bool
|
True iff |
Source code in pleat/cutting.py
parallelpointinpolygon ¶
Vectorised :func:pointinpolygon over a batch of query points.
Source code in pleat/cutting.py
polygon_line_segment_intersections ¶
polygon_line_segment_intersections(
poly: ndarray, line_segment: ndarray, eps: float = 1e-12
) -> list
Return the list of intersections of line_segment with each edge of closed polygon poly.
Source code in pleat/cutting.py
get_potential_intersections_2 ¶
get_potential_intersections_2(
segments1: ndarray,
segments2: ndarray,
epsilon: float = 1e-12,
) -> list
Bounding-box prefilter: return (i, j) pairs whose AABBs overlap.
Used as a pre-pass before the expensive exact intersection test. Sweep-line over x; for each x-active segment in one set, intersect-test against x-active segments in the other set whose y-intervals overlap.
Source code in pleat/cutting.py
get_ordered_crossings ¶
Compute exact intersections between two segment sets and group near-duplicates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
segments1
|
ndarray
|
|
required |
segments2
|
ndarray
|
|
required |
eps
|
float
|
Tolerance for clustering near-coincident crossings. |
1e-10
|
Returns:
| Type | Description |
|---|---|
tuple
|
A 5-tuple ``(crossings, segments1_to_crossings, segments2_to_crossings, |
tuple
|
crossings_to_segments1, crossings_to_segments2) |
tuple
|
|
tuple
|
is the ordered list of crossing indices along segment |
tuple
|
|
tuple
|
contributing to crossing |
Source code in pleat/cutting.py
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 | |
delete_new_outside ¶
Flood-fill faces reachable from a new_border half-edge and delete them.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
G
|
'HalfEdgeGraph'
|
Graph to mutate in place. |
required |
border_key
|
str
|
Half-edge attribute marking the new boundary; cleared after deletion. |
'new_border'
|
Source code in pleat/cutting.py
cut_out_poly ¶
cut_out_poly(
G: "EuclideanPositionHEG",
poly: ndarray,
delete_outside: bool = True,
eps: float = 1e-10,
) -> "EuclideanPositionHEG"
Insert vertices and edges where poly crosses G, optionally deleting outside.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
G
|
'EuclideanPositionHEG'
|
Graph to cut, mutated in place. |
required |
poly
|
ndarray
|
|
required |
delete_outside
|
bool
|
If True, faces outside poly are deleted afterwards. |
True
|
eps
|
float
|
Tolerance for crossing clustering. |
1e-10
|
Returns:
| Type | Description |
|---|---|
'EuclideanPositionHEG'
|
The modified graph (also mutated in place). |
Source code in pleat/cutting.py
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 | |